From 85041112eff431d50d1e06ae3f0bfbc0896fc54f Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 19 Nov 2023 15:03:56 +0000 Subject: [PATCH] chore(bootstrap): simplify bootstrap make target The CI bootstrap steps weren't really "CI" related, nor were they actually used. So they have been removed. --- Brewfile.ci | 3 --- Makefile | 6 +----- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 Brewfile.ci diff --git a/Brewfile.ci b/Brewfile.ci deleted file mode 100644 index 638e9f6..0000000 --- a/Brewfile.ci +++ /dev/null @@ -1,3 +0,0 @@ -# frozen_string_literal: true - -brew 'python' diff --git a/Makefile b/Makefile index 14a2ef8..e7e6a78 100644 --- a/Makefile +++ b/Makefile @@ -46,16 +46,12 @@ SHELL := env \ # bootstrap: bootstrap-brew bootstrap-ruby -bootstrap-ci: bootstrap-brew bootstrap-brew-ci bootstrap-ruby bootstrap-pip bootstrap-ruby: bundle install bootstrap-brew: - brew bundle - -bootstrap-brew-ci: - brew bundle --file Brewfile.ci + brew bundle --verbose --no-upgrade bootstrap-pip: $(PIP) install -r requirements-ci.txt