我是詹金斯的新手。今天我尝试创建一个Multibranche Pipeline。 我想用分支名称标记创建的docker镜像。
我的Jenkins文件锁如下:
node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("brosftw/minecraft")
}
stage('Test image') {
app.inside {
sh 'echo ${BUILD_BRANCHENAME}'
}
}
stage('Push image') {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
/* Docker credentials from Jenkins ID for BrosFTW Repository */
docker.withRegistry('https://registry.hub.docker.com', 'e2fd9e87-21a4-4ee0-86d4-da0f7949a984') {
/* If Branch is master tag it with the latest tag */
if ("${env.BUILD_BRANCHENAME}" == "master") {
app.push("latest")
} else {
/* If it is a normal branch tag it with the branch name */
app.push("${env.BUILD_BRANCHENAME}")
}
}
}
}
已修改
来自Jenkins作业日志的docker push请求:
+ docker tag brosftw/minecraft registry.hub.docker.com/brosftw/minecraft:null
[Pipeline] sh
[Minecraft-Test_master-ATFJUB2KKWARM4FFRXV2PEMHX6QFD24UQ5NGQXBIWT5YQJNXBAIA] Running shell script
+ docker push registry.hub.docker.com/brosftw/minecraft:null
The push refers to a repository [registry.hub.docker.com/brosftw/minecraft]
echo命令的输出如下:
[Pipeline] {
[Pipeline] sh
[Minecraft-Test_master-ATFJUB2KKWARM4FFRXV2PEMHX6QFD24UQ5NGQXBIWT5YQJNXBAIA] Running shell script
+
[Pipeline]
有谁能告诉我我对env变量做错了什么?
我的第二个问题是,app.inside
没有返回分支名称....我不明白为什么。
感谢您的每一个答案。
答案 0 :(得分:1)
您可以使用env.BRANCH_NAME
访问分支名称。此外,您不需要在字符串中插入变量。
所以最后一部分的工作原理如下:
docker.withRegistry('https://registry.hub.docker.com', 'e2fd9e87-21a4-4ee0-86d4-da0f7949a984') {
/* If Branch is master tag it with the latest tag */
if (env.BRANCH_NAME == "master") {
app.push("latest")
} else {
/* If it is a normal branch tag it with the branch name */
app.push(env.BRANCH_NAME)
}
}
不确定,为什么您认为该变量被称为BUILD_BRANCHENAME
。它是BRANCH_NAME
。您可以使用管道作业的管道语法链接(然后在全局变量参考下)查看此类全局变量列表。