Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gen740 committed Jan 24, 2024
1 parent 2b0d1bb commit 11702f4
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,24 @@ jobs:
uses: actions/checkout@v3

- name: Upgrade homebrew
run: |
brew update
run: brew update
continue-on-error: true

- name: Install llvm
run: |
brew install llvm
run: brew install llvm
continue-on-error: true

- name: Install cmake
run: |
brew install cmake
run: brew install cmake
continue-on-error: true

- name: Install ninja
run: |
brew install ninja
run: brew install ninja
continue-on-error: true

- name: Add LLVM Path
run: echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH

- name: Build Debug
run: |
cmake -B build_debug -S . -DARGO_TESTS_ENABLE=true -GNinja -DCMAKE_BUILD_TYPE=Debug -DARGO_CLANG_TIDY_ENABLE=ON
Expand Down

0 comments on commit 11702f4

Please sign in to comment.