Skip to content

Commit

Permalink
patch main push
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathf committed Jul 10, 2024
1 parent 825f15e commit 1cad815
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/main_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,21 @@ jobs:
conan config set "storage.path=$env:GITHUB_WORKSPACE/conan_data"
conan install --build=openssl --install-folder conan_build .
- uses: pypa/[email protected]
- name: Build wheels
if: matrix.platform != 'macos-arm'
uses: pypa/[email protected]
env:
MACOSX_DEPLOYMENT_TARGET: 10.14
CIBW_BUILD: '*cp39*'
MACOSX_DEPLOYMENT_TARGET: 13.0
CC: gcc-13
CXX: g++-13

- name: Build wheels
if: matrix.platform == 'macos-arm'
uses: pypa/[email protected]
env:
MACOSX_DEPLOYMENT_TARGET: 14.0
CC: gcc-13
CXX: g++-13

- name: Verify clean directory
run: git diff --exit-code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
MACOSX_DEPLOYMENT_TARGET: 13.0
CC: gcc-13
CXX: g++-13

- name: Build wheels
if: matrix.platform == 'macos-arm'
uses: pypa/[email protected]
Expand Down

0 comments on commit 1cad815

Please sign in to comment.