Skip to content

Commit

Permalink
Cleanup CI tool install
Browse files Browse the repository at this point in the history
  • Loading branch information
kdubb committed May 16, 2024
1 parent 32f485c commit f558257
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ jobs:

- name: Install Tools
run: |
brew tap a7ex/homebrew-formulae
brew install xcbeautify sonar-scanner findsimulator
brew install sonar-scanner
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1

Expand Down Expand Up @@ -58,13 +57,6 @@ jobs:

steps:

- name: Install Tools
run: |
brew tap a7ex/homebrew-formulae
brew install xcbeautify findsimulator
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1

- uses: actions/checkout@v3

- name: Select Xcode
Expand Down
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ comma:=,
build-test-all: clean build-test-macos build-test-ios build-test-watchos build-test-tvos

check-tools:
@which findsimulator || (echo "findsimulator is required. run 'make install-tools'" && exit 1)
@which xcbeautify || (echo "xcbeautify is required. run 'make install-tools'" && exit 1)

install-tools:
brew tap a7ex/homebrew-formulae
brew install xcbeautify findsimulator
brew install xcbeautify

clean:
@rm -rf TestResults
Expand Down

0 comments on commit f558257

Please sign in to comment.