From 7fb465c4d2420e6e7165ebd7374fcb4640e1994b Mon Sep 17 00:00:00 2001 From: Benjy Weinberger Date: Thu, 16 Mar 2023 17:35:51 -0700 Subject: [PATCH] Use wheel build images from GitHub Packages. (#18518) Since the Docker Hub free tier is going away. Also cherrypicks the comment removal in #18521 --- .github/workflows/test.yaml | 2 +- build-support/bin/generate_github_workflows.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fa802f25d26..38c9dfcba4f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -322,7 +322,7 @@ jobs: timeout-minutes: 60 build_wheels_linux_arm64: container: - image: registry.hub.docker.com/pantsbuild/wheel_build_aarch64:v3-8384c5cf + image: ghcr.io/pantsbuild/wheel_build_aarch64:v3-8384c5cf env: PANTS_REMOTE_CACHE_READ: 'false' PANTS_REMOTE_CACHE_WRITE: 'false' diff --git a/build-support/bin/generate_github_workflows.py b/build-support/bin/generate_github_workflows.py index 8284d19ebad..d1fe07e2832 100644 --- a/build-support/bin/generate_github_workflows.py +++ b/build-support/bin/generate_github_workflows.py @@ -717,7 +717,7 @@ def build_wheels_job(platform: Platform, python_versions: list[str]) -> Jobs: # Unfortunately Equinix do not support the CentOS 7 image on the hardware we've been # generously given by the Runs on ARM program. Se we have to build in this image. container = { - "image": "registry.hub.docker.com/pantsbuild/wheel_build_aarch64:v3-8384c5cf", + "image": "ghcr.io/pantsbuild/wheel_build_aarch64:v3-8384c5cf", } else: container = None