This is an automated email from the ASF dual-hosted git repository.
iuliana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git
The following commit(s) were added to refs/heads/master by this push:
new 9908562 Print dockerTag Jenkins var in echo step
new b74a9fe Merge pull request #1305 from algairim/build/Jenkinsfile
9908562 is described below
commit 99085629a6091c120a2477f412ccdaffdcadc8b1
Author: Mykola Mandra <[email protected]>
AuthorDate: Mon Feb 21 14:47:12 2022 +0000
Print dockerTag Jenkins var in echo step
Signed-off-by: Mykola Mandra <[email protected]>
---
Jenkinsfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Jenkinsfile b/Jenkinsfile
index 7e04426..3bb7853 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -41,6 +41,7 @@ node(label: 'ubuntu') {
sh 'mkdir -p ${WORKSPACE}/.m2'
sh 'docker logout' // needed because sometimes cached
credentials break the following step (creds aren't needed)
sh 'echo DOCKER_TAG=${DOCKER_TAG}'
+ echo 'dockerTag=${dockerTag}'
echo 'Building docker image for test environment ...'
environmentDockerImage = docker.build('brooklyn:${DOCKER_TAG}')
}