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

Update manylinux docker images for i686 and x86_64 from 2010 to 2014 #183

Merged
merged 1 commit into from
Dec 30, 2022
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
6 changes: 3 additions & 3 deletions config/c-code/tests.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ jobs:
strategy:
matrix:
python-version: ["3.9"]
image: [manylinux2010_x86_64, manylinux2010_i686, manylinux2014_aarch64]
image: [manylinux2014_x86_64, manylinux2014_i686, manylinux2014_aarch64]

steps:
{% set cache_key = "${{ runner.os }}-pip_manylinux-${{ matrix.image }}-${{ matrix.python-version }}" %}
Expand All @@ -373,7 +373,7 @@ jobs:
- name: Update pip
run: pip install -U pip
- name: Build %(package_name)s (x86_64)
if: matrix.image == 'manylinux2010_x86_64'
if: matrix.image == 'manylinux2014_x86_64'
# An alternate way to do this is to run the container directly with a uses:
# and then the script runs inside it. That may work better with caching.
# See https://github.com/pyca/bcrypt/blob/f6b5ee2eda76d077c531362ac65e16f045cf1f29/.github/workflows/wheel-builder.yml
Expand All @@ -382,7 +382,7 @@ jobs:
run: |
bash .manylinux.sh
- name: Build %(package_name)s (i686)
if: matrix.image == 'manylinux2010_i686'
if: matrix.image == 'manylinux2014_i686'
env:
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}
PRE_CMD: linux32
Expand Down