詹金斯:步骤和步骤之间的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了詹金斯:步骤和步骤之间的区别相关的知识,希望对你有一定的参考价值。
这里提到的step
有什么区别https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#step-general-build-step
和steps
在这里提到https://jenkins.io/doc/pipeline/tour/running-multiple-steps/
答案
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
}
}
}
}
以上是关于詹金斯:步骤和步骤之间的区别的主要内容,如果未能解决你的问题,请参考以下文章
构建步骤“执行 Windows 批处理命令”在詹金斯中将构建标记为失败
markdown 在Intel Nuc上设置Ubuntu Web服务器,步骤和代码片段