-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change manylinux image to manylinux 2_28 (#5398)
This PR changes the manylinux images that we use for release to version 2_28 Testing Release CI: https://github.com/dudoslav/TileDB/actions/runs/12180726330 [sc-60195] --- TYPE: IMPROVEMENT DESC: manylinux_2_28 for linux release --------- Co-authored-by: Dušan Baran <[email protected]> Co-authored-by: Theodore Tsirpanis <[email protected]>
- Loading branch information
1 parent
ae2c2a6
commit 0ea3351
Showing
2 changed files
with
7 additions
and
17 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 |
---|---|---|
|
@@ -80,9 +80,6 @@ env: | |
bootstrap_args: "--enable-ccache --vcpkg-base-triplet=${{ inputs.vcpkg_base_triplet || (startsWith(inputs.matrix_image, 'ubuntu-') && 'x64-linux' || 'arm64-osx') }} ${{ inputs.bootstrap_args }} ${{ inputs.asan && '--enable-sanitizer=address' || '' }}" | ||
VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite' | ||
SCCACHE_GHA_ENABLED: "true" | ||
# Manylinux does not support Node 20 due to libc incompatibility. Temporarily opt out. | ||
# https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ | ||
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: ${{ inputs.manylinux && 'true' || 'false' }} | ||
|
||
jobs: | ||
build: | ||
|
@@ -91,7 +88,7 @@ jobs: | |
os: | ||
- ${{ inputs.matrix_image }} | ||
runs-on: ${{matrix.os}} | ||
container: ${{inputs.manylinux && 'quay.io/pypa/manylinux2014_x86_64' || ''}} | ||
container: ${{inputs.manylinux && 'quay.io/pypa/manylinux_2_28_x86_64' || ''}} | ||
|
||
if: ${{ startsWith(github.ref , 'refs/tags') != true && startsWith(github.ref , 'build-') != true }} | ||
timeout-minutes: ${{ inputs.timeout || 90 }} | ||
|
@@ -117,7 +114,7 @@ jobs: | |
python-version: '3.12' | ||
|
||
- name: Prevent vpckg from building debug variants | ||
run: python ./scripts/ci/patch_vcpkg_triplets.py | ||
run: python3 ./scripts/ci/patch_vcpkg_triplets.py | ||
|
||
- name: Setup sccache | ||
uses: mozilla-actions/[email protected] | ||
|
@@ -131,8 +128,7 @@ jobs: | |
if: inputs.manylinux | ||
run: | | ||
set -e pipefail | ||
yum install -y redhat-lsb-core centos-release-scl devtoolset-7 perl-IPC-Cmd | ||
echo "source /opt/rh/devtoolset-7/enable" >> ~/.bashrc | ||
yum install -y redhat-lsb-core perl-IPC-Cmd curl zip unzip tar | ||
# This must happen after checkout, because checkout would remove the directory. | ||
- name: Install Ninja | ||
|
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