Skip to content

Instantly share code, notes, and snippets.

@initcron
Created October 18, 2024 05:46
Show Gist options
  • Save initcron/865caccf96d598bbf43c6847d87bf538 to your computer and use it in GitHub Desktop.
Save initcron/865caccf96d598bbf43c6847d87bf538 to your computer and use it in GitHub Desktop.
Jenkinsfile snippet with an example of a stage which is run on multiple nodes using matrix directive
pipeline {
agent none
stages {
stage('Run on multiple nodes') {
matrix {
axes {
axis {
name 'AGENT'
values 'node1', 'node2', 'node3'
}
}
agent { label AGENT }
stages {
stage('Test') {
steps {
echo "Running on ${AGENT}"
// Add your steps here
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment