0
私はパイプラインにstash \ unstashを使用していますが、複数の段階でアンスタッシュできますか?パイプライン全体で複数の段階で隠しを解き放つ
ですから、例えば:
stage('One') {
steps {
echo 'Stage one...'
stash includes: 'dist/**/*', name: 'builtSources'
dir('/some-dir/deploy') {
unstash 'builtSources'
}
}
}
stage('Two') {
steps {
echo 'Stage two...'
node('OtherNode') {
dir('/some-other-dir/deploy') {
unstash 'builtSources'
}
}
}
}
だから私は、次の段階のいずれかで、任意の回数を早い段階で行われたスタッシュを検索することができますか?