From e1a7d6f1dec56740d14468186665146ab60da05d Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Wed, 6 Mar 2024 15:29:46 -0800 Subject: [PATCH] images: Push images to the artifact registry Container Registry is deprecated. Note: all other links to the old container registry will be updated after uploading all images to the new repository. PiperOrigin-RevId: 613361035 --- .buildkite/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/release.yaml b/.buildkite/release.yaml index a61ae4f57..b733cb40b 100644 --- a/.buildkite/release.yaml +++ b/.buildkite/release.yaml @@ -23,14 +23,14 @@ steps: label: ":ship: Push all images (x86_64)" if: build.branch == "master" && build.tag == null commands: - - make -j 8 ARCH=x86_64 push-all-images + - make ARCH=x86_64 REMOTE_IMAGE_PREFIX=us-central1-docker.pkg.dev/gvisor-presubmit/gvisor-presubmit-images push-all-images agents: arch: "amd64" - <<: *common label: ":ship: Push all images (aarch64)" if: build.branch == "master" && build.tag == null commands: - - make -j 8 ARCH=aarch64 push-all-images + - make ARCH=aarch64 REMOTE_IMAGE_PREFIX=us-central1-docker.pkg.dev/gvisor-presubmit/gvisor-presubmit-images push-all-images agents: arch: "arm64" - <<: *common