Skip to content

Commit

Permalink
CI: updated the location of LLVM for our coverage tests on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Apr 29, 2024
1 parent 003cc1b commit 1c562ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ jobs:
python_unit_testing: OFF
shared_libs: ON
unit_testing: ON
context: PATH=/usr/local/opt/llvm/bin:$PATH CC=/usr/local/opt/llvm/bin/clang CXX=/usr/local/opt/llvm/bin/clang++
context: PATH=/opt/homebrew/opt/llvm/bin:$PATH CC=/opt/homebrew/opt/llvm/bin/clang CXX=/opt/homebrew/opt/llvm/bin/clang++
target: code_coverage
- name: 'Memory checks'
os: ubuntu-latest
Expand Down Expand Up @@ -285,7 +285,9 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1
- name: Install LLVM
if: ${{ matrix.target == 'code_coverage' }}
run: brew install --overwrite llvm
run: |
brew install --overwrite llvm
brew info llvm
- name: Install Clang
if: ${{ matrix.name == 'Code analysis' }}
run: |
Expand Down

0 comments on commit 1c562ed

Please sign in to comment.