Skip to content

Commit

Permalink
Make homebrew force install
Browse files Browse the repository at this point in the history
  • Loading branch information
gen740 committed Dec 6, 2023
1 parent 8ccf317 commit 74837c8
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v3


# - name: update homebrew
# run: |
# brew update

- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: update homebrew
run: |
{ invalid_cmd; return 0;}
brew update
{ brew upgrade --force; return 0; }
- name: Install llvm
run: |
brew install llvm
brew install llvm --force
- name: Install cmake HEAD
run: |
brew unlink cmake
brew install cmake --HEAD
brew install cmake --HEAD --force
- name: Cmake and Compile
run: |
Expand Down

0 comments on commit 74837c8

Please sign in to comment.