Skip to content

Commit

Permalink
Merge pull request #183 from zopefoundation/dataflake/update_manylinu…
Browse files Browse the repository at this point in the history
…x_images
  • Loading branch information
dataflake authored Dec 30, 2022
2 parents da2a4ef + dfad17d commit 08d3045
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 08d3045

Please sign in to comment.