gpt4 book ai didi

jenkins - 更改管道阶段之间的节点

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

在我的管道中,我正在其中一个阶段从主节点更改为从节点:

pipeline {
agent any
stages {
stage('Install Deps...') {
steps {
echo 'Do something here'
}
}
stage('Build') {
steps {
echo 'Build stuff here...'
stash includes: 'dist/**/*', name: 'builtSources'
node('Protractor') {
dir('/some-dir/deploy') {
unstash 'builtSources'
}
}
}
}
stage('Tests') {
steps {
parallel (
"Chrome": {
echo 'Chrome testing here...'
}
)
}
}
}
}

我可以从 Jenkins 的控制台输出中看到,它在第一阶段开始时正确显示“在 master 上运行”,并在第二阶段更改为“在 Protractor 上运行”。当第三个“测试”阶段开始时,我在控制台输出中没有看到节点变回主节点,这是预期的行为吗?

除非使用 node() block 明确告知,否则阶段是否应该在主服务器上运行?

最佳答案

你有一个嵌套节点。这应该相当于:

node {
//run stuff on any node
node('agent'){
//run stuff on agent; other node is still busy
}
//return to original node; no message since it is still open
}
//outside of all nodes

关于jenkins - 更改管道阶段之间的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43091104/

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