Skip to content

Commit ad76244

Browse files
committed
fix macos build
1 parent 5f15f03 commit ad76244

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,10 @@ jobs:
2727
include:
2828
- os: windows-2025
2929
build_type: RelWithDebInfo
30-
cc: clang
31-
cxx: clang++
3230
- os: ubuntu-24.04
3331
build_type: Debug
34-
cc: clang
35-
cxx: clang++
3632
- os: macos-15
3733
build_type: Debug
38-
cc: clang
39-
cxx: clang++
4034

4135
runs-on: ${{ matrix.os }}
4236

@@ -45,9 +39,9 @@ jobs:
4539
uses: actions/checkout@v4
4640

4741
- name: Setup Pixi
48-
uses: prefix-dev/setup-pixi@v0.8.1
42+
uses: prefix-dev/setup-pixi@v0.9.3
4943
with:
50-
pixi-version: v0.39.0
44+
pixi-version: v0.59.0
5145
environments: develop
5246
activate-environment: true
5347
cache: true
@@ -58,8 +52,8 @@ jobs:
5852
run: |
5953
cmake -B build -G Ninja \
6054
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
61-
-DCMAKE_C_COMPILER=${{ matrix.cc }} \
62-
-DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \
55+
-DCMAKE_C_COMPILER=clang \
56+
-DCMAKE_CXX_COMPILER=clang++ \
6357
-DCLICE_ENABLE_TEST=ON \
6458
-DCLICE_CI_ENVIRONMENT=ON
6559

0 commit comments

Comments
 (0)