From 5d27b441b428d6a09f73c63b633a216066e2a412 Mon Sep 17 00:00:00 2001 From: votrou <65201279+votrou@users.noreply.github.com> Date: Wed, 10 Jul 2024 13:56:26 -0700 Subject: [PATCH] [ci] upgrade manylinux image (#46361) (#11) This PR is necessary to get the Ray pipeline to build images for us Upgrade manylinux image to see if it fixes the mirrolist.centoos deprecated issue Test: - CI ## Why are these changes needed? ## Related issue number ## Checks - [ ] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [ ] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( Signed-off-by: can Co-authored-by: Cuong Nguyen <128072568+can-anyscale@users.noreply.github.com> --- ci/docker/manylinux.Dockerfile | 20 ++++++++++++++++++-- ci/docker/manylinux.aarch64.wanda.yaml | 2 +- ci/docker/manylinux.wanda.yaml | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/ci/docker/manylinux.Dockerfile b/ci/docker/manylinux.Dockerfile index b44555d02aa21..ec0ae54dbce7c 100644 --- a/ci/docker/manylinux.Dockerfile +++ b/ci/docker/manylinux.Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.3-labs ARG HOSTTYPE -FROM quay.io/pypa/manylinux2014_${HOSTTYPE}:2023-11-13-f6b0c51 +FROM quay.io/pypa/manylinux2014_${HOSTTYPE}:2024-07-01-8dac23b ARG BUILDKITE_BAZEL_CACHE_URL @@ -10,4 +10,20 @@ ENV RAY_INSTALL_JAVA=1 ENV BUILDKITE_BAZEL_CACHE_URL=$BUILDKITE_BAZEL_CACHE_URL COPY ci/build/build-manylinux-forge.sh /tmp/build-manylinux-forge.sh -RUN /tmp/build-manylinux-forge.sh + +RUN <