Created
October 18, 2024 05:46
-
-
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
This file contains 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('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