Skip to content

Commit b345762

Browse files
committed
use mac-15 (arm)
1 parent 4258910 commit b345762

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci-macos-clang.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@ jobs:
2323
matrix:
2424
library_type: [shared, static]
2525
cxx_compiler: ["$(brew --prefix llvm@18)/bin/clang++"]
26-
llvm: ["$(brew --prefix llvm@18)"]
27-
boost: ["$(brew --prefix boost)"]
2826
libomp: ["$(brew --prefix libomp)"]
29-
os: [macos-14, macos-12]
27+
os: [macos-15]
3028

3129
# env does not work here because is resolved as string and not command
3230
# env:
@@ -63,7 +61,8 @@ jobs:
6361
# git clone https://github.com/peter-urban/meson.git; cd meson; git checkout fix-openmp-dependency-for-clang-cl; pip install .; meson --version
6462
6563
- name: configure meson
66-
run: CXX=${{ matrix.llvm }}/bin/clang++ LDFLAGS="-L${{ matrix.llvm }}/lib/c++ -L${{ matrix.llvm }}/lib -undefined dynamic_lookup -Wl,-no_fixup_chains -Wl,-dead_strip -Wl,-rpath, ${{ matrix.llvm }}/lib/c++" CPPFLAGS="-I${{ matrix.llvm }}/include" meson setup builddir/ --default-library=${{matrix.library_type}} -D"python.install_env=auto"
64+
run: |
65+
meson setup builddir -Dpython.install_env=auto
6766
6867
- name: compile project
6968
run: meson compile -C builddir/

0 commit comments

Comments
 (0)