Skip to content

Commit 88d9e43

Browse files
committed
Different clang install?
1 parent 1c70147 commit 88d9e43

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/wheels.yaml

+12-7
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,18 @@ jobs:
287287
with:
288288
xcode-version: latest
289289

290+
# - name: Install Clang
291+
# if: matrix.os == 'macos-latest'
292+
# uses: KyleMayes/install-llvm-action@v1
293+
# with:
294+
# version: "15.0"
295+
# directory: "./llvm"
296+
# env: on
297+
290298
- name: Install Clang
291299
if: matrix.os == 'macos-latest'
292-
uses: KyleMayes/install-llvm-action@v1
293-
with:
294-
version: "15.0"
295-
directory: "./llvm"
296-
env: on
300+
run: |
301+
brew install llvm libomp
297302
298303
- name: Build Wheels
299304
if: runner.os == 'macOS'
@@ -309,8 +314,8 @@ jobs:
309314
GITHUB_ACTIONS: ON
310315
LIBRAPID_GET_BLAS: OFF
311316
LIBRAPID_GET_FFTW: OFF
312-
CC: ./llvm/bin/clang
313-
CXX: ./llvm/bin/clang++
317+
CC: clang
318+
CXX: clang++
314319

315320
run: |
316321
python -m pip install cibuildwheel

0 commit comments

Comments
 (0)