Skip to content

Commit

Permalink
Try pinning test LLVM to GCC-14 for Brille compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Jul 3, 2024
1 parent d44aaed commit 9dbaddf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
channel-priority: true
- name: Install llvm on Macos
if: startsWith(matrix.os, 'macos')
run: brew install llvm
run: |
brew install llvm@14
echo "CC=gcc-14" >> $GITHUB_ENV
- name: Update pip and install dependencies
shell: bash -l {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
channel-priority: true
- name: Install llvm on Macos
if: startsWith(matrix.os, 'macos')
run: brew install llvm
run: |
brew install llvm@14
echo "CC=gcc-14" >> $GITHUB_ENV
- name: Update pip and install dependencies
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 9dbaddf

Please sign in to comment.