Skip to content

Instantly share code, notes, and snippets.

@LeoQuote
Created January 16, 2020 04:39
Show Gist options
  • Save LeoQuote/041188d0f9c1095701c31bef619a2c4d to your computer and use it in GitHub Desktop.
Save LeoQuote/041188d0f9c1095701c31bef619a2c4d to your computer and use it in GitHub Desktop.
pipeline {
agent any
stages {
stage('matrix') {
matrix {
axes {
axis {
name 'REALVALUE'
values '1', '2', '3'
}
}
stages {
stage('equal to 1?') {
steps {
sh "test 1 -eq ${REALVALUE}"
}
}
}
post {
success {
echo "We are the champions."
}
failure {
echo "You lost."
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment