Created
April 4, 2017 13:57
-
-
Save jaohaohsuan/ff86867975d17416db6d991e3f08a3e2 to your computer and use it in GitHub Desktop.
注意看到agent section. 可以支持在不同stage使用不同的agent(node)或容器
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pipeline { | |
| agent none | |
| stages { | |
| stage('Build') { | |
| agent { label 'docker' } | |
| steps { | |
| echo "hello" | |
| } | |
| } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
label与'docker'之间没有: