https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#step-general-build-step
中提到的step
有什么区别
和steps
,如此处https://jenkins.io/doc/pipeline/tour/running-multiple-steps/
答案 0 :(得分:0)
steps
是stage
内部要做的事情的分组。 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
}
}
}
}