43-Jenkins-修改当前构建名称和描述
Posted 爱学习de测试小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了43-Jenkins-修改当前构建名称和描述相关的知识,希望对你有一定的参考价值。
修改当前构建名称和描述
前言
- 本篇来学习如何修改Jenkins当前构建的名称和描述
使用的变量
displayName :构建名称
description :构建描述
使用示例
未修改
pipeline
agent any
stages
stage('Hello')
steps
echo 'Hello World'
script
// 获取当前构建名称和描述
println currentBuild.displayName
println currentBuild.description
- 构建历史
- 日志输出
已修改
pipeline
agent any
parameters
choice choices: ['hotfix', 'dev', 'test', 'prod'], description: '分支', name: 'BRANCH_NAME'
string defaultValue: '1.1.1',description: '版本', name: 'VAERSION'
stages
stage('Hello')
steps
echo 'Hello World'
script
// 获取当前构建名称和描述
println currentBuild.displayName
println currentBuild.description
// 修改当前构建名称和描述
currentBuild.displayName = "#$env.BUILD_NUMBER-$BRANCH_NAME"
currentBuild.description = "$VAERSION"
// 打印修改后的构建名称和描述
println currentBuild.displayName
println currentBuild.description
-
构建历史
-
日志输出
以上是关于43-Jenkins-修改当前构建名称和描述的主要内容,如果未能解决你的问题,请参考以下文章
Kubernetes和Jenkins——基于Kubernetes构建Jenkins持续集成平台
Kubernetes和Jenkins——基于Kubernetes构建Jenkins持续集成平台
Kubernetes和Jenkins——基于Kubernetes构建Jenkins持续集成平台
CI/CD——构建企业级Docker+Jenkins+Git+Harbor流水线自动化持续集成持续发布平台