-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit macOS wheels to 3.8, 3.11 & 3.12
Update macOS build to also use macos-14 runners
- Loading branch information
1 parent
1aa1a6a
commit b233e2d
Showing
3 changed files
with
40 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
NEEDS_REBUILD: ${{ env.NEEDS_REBUILD }} | ||
|
||
steps: | ||
- uses: actions/cache@v3 | ||
- uses: actions/cache@v4 | ||
name: Check cache for already built wheels | ||
id: cache-package | ||
with: | ||
|
@@ -72,7 +72,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Download built artifacts" | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: artifacts | ||
|
||
|
@@ -84,12 +84,12 @@ jobs: | |
- name: Cache wheels folder | ||
if: steps.cache-package.outputs.cache-hit != 'true' | ||
uses: actions/cache/save@v3 | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: dist | ||
key: carolina_wheels_boost${{ needs.build-settings.outputs.BOOST_VERSION }}_dakota${{ needs.build-settings.outputs.DAKOTA_VERSION }} | ||
|
||
- uses: actions/cache/restore@v3 | ||
- uses: actions/cache/restore@v4 | ||
id: restore-cached-package | ||
with: | ||
key: carolina_wheels_boost${{ needs.build-settings.outputs.BOOST_VERSION }}_dakota${{ needs.build-settings.outputs.DAKOTA_VERSION }} | ||
|
@@ -110,7 +110,7 @@ jobs: | |
ls dist | ||
- name: Publish to pypi | ||
uses: pypa/[email protected].10 | ||
uses: pypa/[email protected].14 | ||
if: > | ||
(github.event_name == 'workflow_dispatch' && inputs.publish) || | ||
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters