Skip to content

Commit

Permalink
don't build apple silicon
Browse files Browse the repository at this point in the history
  • Loading branch information
JoyMonteiro committed Feb 3, 2023
1 parent a4901ce commit cb7577a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_climt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Build on Linux
env:
# CIBW_BUILD: cp310-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64
CIBW_SKIP: "cp36-* cp37-*"
CIBW_SKIP: "cp27-* cp36-* cp35-* cp37-*"
CIBW_ENVIRONMENT: "CC=gcc FC=gfortran CLIMT_ARCH=Linux"
if: ${{ runner.os == 'Linux' }}
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -41,8 +41,8 @@ jobs:
- name: Build on macOS
env:
# CIBW_BUILD: cp310-macosx_x86_64 cp38-macosx_x86_64 cp39-macosx_x86_64 cp39-macosx_arm64
CIBW_SKIP: "cp36-* cp37-*"
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_SKIP: "cp27-* cp35-* cp36-* cp37-*"
CIBW_ARCHS_MACOS: "x86_64"
CIBW_ENVIRONMENT: "CLIMT_ARCH=Darwin"
# CIBW_ENVIRONMENT: "CC=gcc-8 FC=gfortran-8 CLIMT_ARCH=Darwin"
# CIBW_BEFORE_ALL_MACOS: brew remove gcc; brew install gcc@8
Expand Down

0 comments on commit cb7577a

Please sign in to comment.