如何在 jenkins 声明管道中使用随机数
How to use Randon number in jenkins Declarative pipeline
有人可以帮助我如何在 jenkins 声明性管道中使用随机数字作为环境变量以在整个管道中使用这个数字,我们需要这个数字作为我的构建工件的标签。谢谢。
我在我的 Jenkins 声明管道中进行了以下尝试,但它抛出了空消息
environment {
rand = "$RANDOM"
}
stages{
stage("number"){
steps{
script{
echo " this is a number $rand"
}}}}
这里是生成随机数的管道脚本:
pipeline {
agent any
environment {
max = 50
random_num = "${Math.abs(new Random().nextInt(max+1))}"
}
stages {
stage('Randon number') {
steps {
echo "The random number is: ${env.random_num}"
}
}
}
}
这将生成 0-50 之间的随机数。
这里可以改变max
的值来决定上限范围
有人可以帮助我如何在 jenkins 声明性管道中使用随机数字作为环境变量以在整个管道中使用这个数字,我们需要这个数字作为我的构建工件的标签。谢谢。
我在我的 Jenkins 声明管道中进行了以下尝试,但它抛出了空消息
environment {
rand = "$RANDOM"
}
stages{
stage("number"){
steps{
script{
echo " this is a number $rand"
}}}}
这里是生成随机数的管道脚本:
pipeline {
agent any
environment {
max = 50
random_num = "${Math.abs(new Random().nextInt(max+1))}"
}
stages {
stage('Randon number') {
steps {
echo "The random number is: ${env.random_num}"
}
}
}
}
这将生成 0-50 之间的随机数。
这里可以改变max
的值来决定上限范围