Skip to content

Bump manylinux base image #3541

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pin version on image for CI stability
FROM quay.io/pypa/manylinux2014_aarch64:2025.03.09-1
FROM quay.io/pypa/manylinux2014_aarch64:2025.07.25-1
ENV MAKEFLAGS="-j 4"
ENV PG_DEP_PREFIX="/usr/local"

Expand Down
2 changes: 1 addition & 1 deletion buildconfig/manylinux-build/docker_base/Dockerfile-i686
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pin version on image for CI stability
FROM quay.io/pypa/manylinux2014_i686:2025.03.09-1
FROM quay.io/pypa/manylinux2014_i686:2025.07.25-1

Check warning on line 2 in buildconfig/manylinux-build/docker_base/Dockerfile-i686

View workflow job for this annotation

GitHub Actions / i686

Base image platform does not match expected target platform

InvalidBaseImagePlatform: Base image quay.io/pypa/manylinux2014_i686:2025.07.25-1 was pulled with platform "linux/386", expected "linux/amd64" for current build
ENV MAKEFLAGS="-j 4"
ENV PG_DEP_PREFIX="/usr/local"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pin version on image for CI stability
FROM quay.io/pypa/manylinux2014_x86_64:2025.03.09-1
FROM quay.io/pypa/manylinux2014_x86_64:2025.07.25-1
ENV MAKEFLAGS="-j 4"
ENV PG_DEP_PREFIX="/usr/local"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ cd ${FFTW}
mkdir build
cd build

cmake .. $PG_BASE_CMAKE_FLAGS
# CMake 3.5 or higher policy is required for buiding under CMake 4
cmake .. $PG_BASE_CMAKE_FLAGS -DCMAKE_POLICY_VERSION_MINIMUM=3.5
make
make install

Expand All @@ -32,6 +33,7 @@ cd $LIBSAMPLERATE
mkdir build
cd build

cmake .. $PG_BASE_CMAKE_FLAGS
# CMake 3.5 or higher policy is required for buiding under CMake 4
cmake .. $PG_BASE_CMAKE_FLAGS -DCMAKE_POLICY_VERSION_MINIMUM=3.5
make
make install
5 changes: 3 additions & 2 deletions buildconfig/manylinux-build/docker_base/ogg/build-ogg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e -x

cd $(dirname `readlink -f "$0"`)

OGG=libogg-1.3.5
OGG=libogg-1.3.6
VORBIS=libvorbis-1.3.7

curl -sL --retry 10 http://downloads.xiph.org/releases/ogg/${OGG}.tar.gz > ${OGG}.tar.gz
Expand All @@ -22,6 +22,7 @@ cd ..
tar xzf ${VORBIS}.tar.gz
cd $VORBIS

cmake . $PG_BASE_CMAKE_FLAGS
# CMake 3.5 or higher policy is required for buiding under CMake 4
cmake . $PG_BASE_CMAKE_FLAGS -DCMAKE_POLICY_VERSION_MINIMUM=3.5
make
make install
2 changes: 1 addition & 1 deletion buildconfig/manylinux-build/docker_base/ogg/ogg.sha512
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
e4d798621bb04a62dcb831e58a444357635ab3bcb9efbdffa009cb0be1cafb5e72bf71cbcad5305aa5268a92076a03a7e564a19c0c8d54b93a05d9b03ad2da6b libogg-1.3.5.tar.gz
5e4a136506a8ce5ca55dfd7426303631285e3e001b52963ac66582cbfb59095a0f07e2df94e733d5f4037cc5416bc091f75a85bee3db6056d806f8fe30a0e28a libogg-1.3.6.tar.gz
8a83ac9e9197f32fad4430946dba3927921320492f9e96cda546e8eb3981e2664da97f77e43cb197577ec056437785168ca7c4138f8bf7f2ba93899846932eb2 libvorbis-1.3.7.tar.gz
Loading