From 9575a01c12438e1adc6bb610c891cb5066aaa7aa Mon Sep 17 00:00:00 2001 From: Connor McEwen Date: Thu, 24 Oct 2019 17:57:35 -0700 Subject: [PATCH] Revert "Build docker images and tag them with the branch (#547)" This reverts commit c2d86d0722caeea35289a33e653d948d985ab2a9. --- cloudbuild.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 60886d1978..a5db2ecd3e 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -1,12 +1,11 @@ steps: - name: 'gcr.io/cloud-builders/docker' - args: [ 'build', '-t', 'us.gcr.io/$PROJECT_ID/geth:$BRANCH_NAME', '-t', 'us.gcr.io/$PROJECT_ID/geth:$COMMIT_SHA', '.' ] + args: [ 'build', '-t', 'us.gcr.io/$PROJECT_ID/geth:$COMMIT_SHA', '.' ] waitFor: ["-"] - name: 'gcr.io/cloud-builders/docker' args: [ 'build', '-t', 'gcr.io/$PROJECT_ID/geth-all:$COMMIT_SHA', '-f', 'Dockerfile.alltools', '.' ] waitFor: ["-"] images: - 'us.gcr.io/$PROJECT_ID/geth:$COMMIT_SHA' -- 'us.gcr.io/$PROJECT_ID/geth:$BRANCH_NAME' - 'gcr.io/$PROJECT_ID/geth-all:$COMMIT_SHA' timeout: 2700s