File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -287,13 +287,18 @@ jobs:
287
287
with :
288
288
xcode-version : latest
289
289
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
+
290
298
- name : Install Clang
291
299
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
297
302
298
303
- name : Build Wheels
299
304
if : runner.os == 'macOS'
@@ -309,8 +314,8 @@ jobs:
309
314
GITHUB_ACTIONS : ON
310
315
LIBRAPID_GET_BLAS : OFF
311
316
LIBRAPID_GET_FFTW : OFF
312
- CC : ./llvm/bin/ clang
313
- CXX : ./llvm/bin/ clang++
317
+ CC : clang
318
+ CXX : clang++
314
319
315
320
run : |
316
321
python -m pip install cibuildwheel
You can’t perform that action at this time.
0 commit comments