stage('Tagging and Pushing') {
def x = 1;
a = x + x;
echo a;
}
我的问题是有关如何执行此操作的
答案 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}"
}