@@ -289,36 +289,27 @@ jobs:
289
289
run : pip install -r requirements.txt
290
290
291
291
- name : Install XCode
292
- if : matrix .os == 'macos-latest '
292
+ if : runner .os == 'macOS '
293
293
uses :
maxim-lobanov/[email protected]
294
294
with :
295
295
xcode-version : latest
296
296
297
- # This doesn't work for some reason
298
- # - name: Install Clang
299
- # if: matrix.os == 'macos-latest'
300
- # uses: KyleMayes/install-llvm-action@v1
301
- # with:
302
- # version: "15.0"
303
- # directory: "./llvm"
304
- # env: on
305
-
306
297
- name : Install Clang
307
- if : matrix .os == 'macos-latest '
298
+ if : runner .os == 'macOS '
308
299
run : |
309
300
rm -f '/usr/local/bin/2to3*'
310
301
brew install llvm libomp
311
302
312
303
- name : Install Clang
313
- if : matrix .os == 'windows-latest '
304
+ if : runner .os == 'Windows '
314
305
uses : KyleMayes/install-llvm-action@v1
315
306
with :
316
307
version : ' 15.0'
317
308
directory : ${RUNNER_TOOL_CACHE}
318
309
env : on
319
310
320
311
- name : Build Wheels
321
- if : runner.os == 'macos-latest '
312
+ if : runner.os == 'macOS '
322
313
env :
323
314
CIBW_BUILD : ${{ matrix.pythonType }}${{ matrix.pythonVersion }}-${{ matrix.platformID }}
324
315
CIBW_ARCHS : all
@@ -340,7 +331,7 @@ jobs:
340
331
python -m cibuildwheel --output-dir wheelhouse
341
332
342
333
- name : Build Wheels
343
- if : runner.os == 'windows-latest '
334
+ if : runner.os == 'Windows '
344
335
env :
345
336
CIBW_BUILD : ${{ matrix.pythonType }}${{ matrix.pythonVersion }}-${{ matrix.platformID }}
346
337
CIBW_ARCHS : all
@@ -355,14 +346,12 @@ jobs:
355
346
LIBRAPID_GET_FFTW : OFF
356
347
CC : ${RUNNER_TOOL_CACHE}/llvm/bin/clang
357
348
CXX : ${RUNNER_TOOL_CACHE}/llvm/bin/clang++
358
-
359
-
360
349
run : |
361
350
python -m pip install cibuildwheel
362
351
python -m cibuildwheel --output-dir wheelhouse
363
352
364
353
- name : Build Wheels
365
- if : runner.os == 'ubuntu-latest '
354
+ if : runner.os == 'Linux '
366
355
env :
367
356
CIBW_BUILD : ${{ matrix.pythonType }}${{ matrix.pythonVersion }}-${{ matrix.platformID }}
368
357
CIBW_ARCHS : all
@@ -375,7 +364,6 @@ jobs:
375
364
GITHUB_ACTIONS : ON
376
365
LIBRAPID_GET_BLAS : ON
377
366
LIBRAPID_GET_FFTW : OFF
378
-
379
367
run : |
380
368
python -m pip install cibuildwheel
381
369
python -m cibuildwheel --output-dir wheelhouse
0 commit comments