Skip to content

Instantly share code, notes, and snippets.

@jaohaohsuan
Created April 4, 2017 13:57
Show Gist options
  • Select an option

  • Save jaohaohsuan/ff86867975d17416db6d991e3f08a3e2 to your computer and use it in GitHub Desktop.

Select an option

Save jaohaohsuan/ff86867975d17416db6d991e3f08a3e2 to your computer and use it in GitHub Desktop.
注意看到agent section. 可以支持在不同stage使用不同的agent(node)或容器
pipeline {
agent none
stages {
stage('Build') {
agent { label 'docker' }
steps {
echo "hello"
}
}
}
}
@jaohaohsuan
Copy link
Author

label'docker'之间没有:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment