Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Jun 5, 2024
1 parent 12e5198 commit 7e565fb
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
#
os: [ macos-13, macos-14, ubuntu-latest, windows-latest ]
os: [ macos-12, macos-13, macos-14, ubuntu-latest, windows-latest ]

steps:
- uses: awvwgk/setup-fortran@main
Expand Down Expand Up @@ -42,19 +42,29 @@ jobs:
CIBW_SKIP: pp*
#CIBW_TEST_REQUIRES: scipy sympy
#CIBW_TEST_COMMAND: python -m unittest camb.tests.camb_test
CIBW_BUILD_VERBOSITY: 2
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build macos-12 wheels
if: matrix.os == 'macos-12'
env:
# Disable building for PyPy and 32bit.
MACOSX_DEPLOYMENT_TARGET: 11
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build wheels
if: matrix.os != 'macos-13'
if: matrix.os != 'macos-13' && matrix.os != 'macos-12'
env:
MACOSX_DEPLOYMENT_TARGET: 14
# Disable building for PyPy and 32bit.
CIBW_BUILD: cp311-*
CIBW_SKIP: pp* *-win32 *-manylinux_i686 *musllinux*
#CIBW_TEST_REQUIRES: scipy sympy
#CIBW_TEST_COMMAND: python -m unittest camb.tests.camb_test
CIBW_BUILD_VERBOSITY: 2
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 7e565fb

Please sign in to comment.