Skip to content
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

Use wheel build images from GitHub Packages. (#18518) #18522

Merged
merged 1 commit into from
Mar 17, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion build-support/bin/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down