Move to manylinux_2_28 for aarch64, ppc64le builds.

This commit is contained in:
Bryan Culver 2022-06-06 22:45:16 -04:00
parent 3c58e96e10
commit 68da879894
No known key found for this signature in database
GPG Key ID: C3FAA78AC311F42B
2 changed files with 4 additions and 4 deletions

View File

@ -59,8 +59,8 @@ jobs:
include: include:
- {tag: manylinux2014, arch: x86_64} - {tag: manylinux2014, arch: x86_64}
- {tag: manylinux2014, arch: i686} - {tag: manylinux2014, arch: i686}
- {tag: manylinux_2_24, arch: aarch64} - {tag: manylinux_2_28, arch: aarch64}
- {tag: manylinux_2_24, arch: ppc64le} - {tag: manylinux_2_28, arch: ppc64le}
- {tag: musllinux_1_1, arch: x86_64} - {tag: musllinux_1_1, arch: x86_64}
- {tag: musllinux_1_1, arch: i686} - {tag: musllinux_1_1, arch: i686}
- {tag: musllinux_1_1, arch: aarch64} - {tag: musllinux_1_1, arch: aarch64}

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Create manylinux_2_24 wheels for psycopg2 # Create manylinux_2_28 wheels for psycopg2
# #
# Look at the .github/workflows/packages.yml file for hints about how to use it. # Look at the .github/workflows/packages.yml file for hints about how to use it.
@ -28,7 +28,7 @@ fi
# Install prerequisite libraries # Install prerequisite libraries
curl -k -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - curl -k -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt stretch-pgdg main" \ echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" \
> /etc/apt/sources.list.d/pgdg.list > /etc/apt/sources.list.d/pgdg.list
apt-get -y update apt-get -y update
apt-get install -y libpq-dev apt-get install -y libpq-dev