From 60328f83bc085aaa97cbb8a468d4457f74f05468 Mon Sep 17 00:00:00 2001 From: Dustin H Date: Fri, 26 Apr 2024 09:51:00 -0400 Subject: [PATCH] Stop auto-promoting TPU image to staging tag (#1391) There are no tests for the TPU image so promoting from :ci-pretest to :staging incorrectly makes it sound like the image is ready for the next stage of tests. Instead we'll leave it at :ci-pretest and have a separate process test and promote them. http://b/336842777 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f66e8867..03388c27 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -238,7 +238,7 @@ pipeline { gcloud container images add-tag gcr.io/kaggle-images/python:${PRETEST_TAG} gcr.io/kaggle-images/python:${STAGING_TAG} gcloud container images add-tag gcr.io/kaggle-private-byod/python:${PRETEST_TAG} gcr.io/kaggle-private-byod/python:${STAGING_TAG} - gcloud container images add-tag gcr.io/kaggle-private-byod/python-tpuvm:${PRETEST_TAG} gcr.io/kaggle-private-byod/python-tpuvm:${STAGING_TAG} + // NOTE(b/336842777): TPUVM images are tested on an actual TPU VM outside this pipeline, so they are not auto-promoted to :staging tag. ''' } }