Skip to content

Commit f0f9dee

Browse files
committed
fix
1 parent b939441 commit f0f9dee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
platform: [windows-latest, ubuntu-latest, macos-13, macos-14]
22+
platform: [windows-2022, ubuntu-latest, macos-13, macos-14]
2323
version: ["3.10", "3.13"]
2424
defaults:
2525
run:
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install OMP (MacOS Intel)
3939
if: matrix.platform == 'macos-13'
4040
run: |
41-
brew install llvm libomp
41+
brew install llvm@20 libomp
4242
echo "export CC=/usr/local/opt/llvm/bin/clang" >> ~/.bashrc
4343
echo "export CXX=/usr/local/opt/llvm/bin/clang++" >> ~/.bashrc
4444
echo "export CFLAGS=\"$CFLAGS -I/usr/local/opt/libomp/include\"" >> ~/.bashrc
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install OMP (MacOS M1)
4949
if: matrix.platform == 'macos-14'
5050
run: |
51-
brew install llvm libomp
51+
brew install llvm@20 libomp
5252
echo "export CC=/opt/homebrew/opt/llvm/bin/clang" >> ~/.bashrc
5353
echo "export CXX=/opt/homebrew/opt/llvm/bin/clang++" >> ~/.bashrc
5454
echo "export CFLAGS=\"$CFLAGS -I/opt/homebrew/opt/libomp/include\"" >> ~/.bashrc

0 commit comments

Comments
 (0)