You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/02/08 19:16:37 UTC

[hop] branch 2.0.0 updated: Disable docker Development tag push

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch 2.0.0
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/2.0.0 by this push:
     new f8ccac4  Disable docker Development tag push
     new eb15a3d  Merge pull request #1346 from hansva/2.0.0
f8ccac4 is described below

commit f8ccac4d523aabbc8a0d1a668ddc46df266ddb90
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Tue Feb 8 20:16:00 2022 +0100

    Disable docker Development tag push
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f5afd85..1a206f3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -135,7 +135,7 @@ pipeline {
                     //TODO We may never create final/latest version using CI/CD as we need to follow manual apache release process with signing
                     sh "docker run --privileged --rm tonistiigi/binfmt --install all"
                     sh "docker buildx create --name hop --use"
-                    sh "docker buildx build --platform linux/amd64,linux/arm64 . -f docker/Dockerfile -t ${DOCKER_REPO}:${env.POM_VERSION} -t ${DOCKER_REPO}:Development --push"
+                    sh "docker buildx build --platform linux/amd64,linux/arm64 . -f docker/Dockerfile -t ${DOCKER_REPO}:${env.POM_VERSION} --push"
                     sh "docker buildx rm hop"
                   }
             }