gpt4 book ai didi

jenkins - 如何在 Jenkins Pipeline 中使用 `def`?

转载 作者:行者123 更新时间:2023-12-04 05:36:27 25 4
gpt4 key购买 nike

我在学习Jenkins Pipeline ,我试图遵循这条管道 code .但我的 Jenkins 总是提示 def是不合法的。
我想知道我是否错过了任何插件?我已经安装了groovy , job-dsl ,但它不起作用。

最佳答案

正如@Rob 所说,有两种类型的管道:scripteddeclarative .就像 imperative对比 declarative . def只允许在 scripted 中使用管道或包裹在 script {} .
脚本化管道(命令式)
node 开始, 和 defif是允许的,如下所示。这是传统的方式。

node {
stage('Example') {
if (env.BRANCH_NAME == 'master') {
echo 'I only execute on the master branch'
} else {
echo 'I execute elsewhere'
}
}
}
声明式管道(首选)
pipeline 开始, 和 defif不允许,除非它包含在 script {...} 中.声明式管道使很多东西易于编写和阅读。
时间触发
pipeline {
agent any
triggers {
cron('H 4/* 0 0 1-5')
}
stages {
stage('Example') {
steps {
echo 'Hello World'
}
}
}
}
什么时候
pipeline {
agent any
stages {
stage('Example Build') {
steps {
echo 'Hello World'
}
}
stage('Example Deploy') {
when {
branch 'production'
}
steps {
echo 'Deploying'
}
}
}
}
平行线
pipeline {
agent any
stages {
stage('Non-Parallel Stage') {
steps {
echo 'This stage will be executed first.'
}
}
stage('Parallel Stage') {
when {
branch 'master'
}
failFast true
parallel {
stage('Branch A') {
agent {
label "for-branch-a"
}
steps {
echo "On Branch A"
}
}
stage('Branch B') {
agent {
label "for-branch-b"
}
steps {
echo "On Branch B"
}
}
}
}
}
}
嵌入脚本代码
pipeline {
agent any
stages {
stage('Example') {
steps {
echo 'Hello World'

script {
def browsers = ['chrome', 'firefox']
for (int i = 0; i < browsers.size(); ++i) {
echo "Testing the ${browsers[i]} browser"
}
}
}
}
}
}
更多声明式管道语法请引用官方文档 here

关于jenkins - 如何在 Jenkins Pipeline 中使用 `def`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47216731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com