Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade CI to manylinux_2_28_x86_64 #539

Merged
merged 3 commits into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 4 additions & 14 deletions .github/workflows/native-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ jobs:
matrix = {
"run": [
{
"runner": "macos-12",
"tag": "macosx_12_0_universal2"
"runner": "macos-13",
"tag": "macosx_13_0_universal2"
},
{
"runner": "ubuntu-22.04",
"tag": "manylinux2014_x86_64",
"container": "quay.io/pypa/manylinux2014_x86_64"
"tag": "manylinux_2_28_x86_64",
"container": "quay.io/pypa/manylinux_2_28_x86_64"
}
]
}
Expand All @@ -131,16 +131,6 @@ jobs:
container:
image: ${{ matrix.run.container || '' }}
steps:
- name: "Fix environment"
run: |
# https://github.com/actions/checkout/issues/1809
# https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
#
# NOTE: actions/checkout et al. @v3 are deprecated - however the manylinux2014_x86_64 Docker image does not have node20
# which prevents from upgrading to @v4. We keep the deprecated versions (@v3) for now for lack of a better solution
echo "ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION=node16" >> $GITHUB_ENV
echo "ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION=node16" >> $GITHUB_ENV
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
- name: "Checkout repository"
uses: actions/checkout@v3
with:
Expand Down