詹金斯:步骤与步骤之间的差异

时间:2019-02-06 13:56:27

标签: jenkins

1 个答案:

答案 0 :(得分:0)

stepsstage内部要做的事情的分组。 steps内的每条指令都是step

这里是一个例子:

pipeline {
    agent any
    stages {
        stage('FirstStage') {
            steps { 
                echo 'Hello World'       // step
                echo 'Hello World again' // another step
            }
        stage('SecondStage') {
            steps { 
                echo 'Hello World'       // yet another step
                echo 'Hello World again' // another step again
            }
        }
    }
}