Skip to content

Instantly share code, notes, and snippets.

@freme
Created December 18, 2017 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freme/b21945675e125be0e66fb43c8f296bb1 to your computer and use it in GitHub Desktop.
Save freme/b21945675e125be0e66fb43c8f296bb1 to your computer and use it in GitHub Desktop.
pipeline{
agent none
stages{
stage('linux') {
when { expression {false} }
agent { label 'default' }
steps { echo 'LINUX' }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment