如何在詹金斯管道中进行算术运算

时间:2018-09-07 05:28:35

标签: jenkins groovy

stage('Tagging and Pushing') { 
    def x = 1; 
    a = x + x;
    echo a;
}

我的问题是有关如何执行此操作的

1 个答案:

答案 0 :(得分:1)

您可以使用print代替echo。它将起作用。

stage('Tagging and Pushing') { 
def x = 1; 
a = x + x;
print a;

}

如果要使用echo,可以按以下方式使用:

stage('Tagging and Pushing') { 
def x = 1; 
a = x + x;
echo "${a}"
}