Created
July 31, 2017 10:04
-
-
Save sophistifunk/68ab14929f58b5d2150bcc65674b5e19 to your computer and use it in GitHub Desktop.
Tall and wide pipeline for testing scrolling
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
node { | |
stage('Alpha') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Bravo') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Charlie') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Delta') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Echo') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Foxtrot') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Golf') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Hotel') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Indigo') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Juliet') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Keeeeee low') { | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
stage('Lima') { | |
parallel( | |
blue: { | |
sh 'echo stuff done in parallel' | |
}, | |
green: { | |
sh 'echo stuff done in parallel' | |
}, | |
red: { | |
sh 'echo stuff done in parallel' | |
}, | |
yellow: { | |
sh 'echo stuff done in parallel' | |
}, | |
black: { | |
sh 'echo stuff done in parallel' | |
}, | |
white: { | |
sh 'echo stuff done in parallel' | |
}, | |
blueX: { | |
sh 'echo stuff done in parallel' | |
}, | |
greenX: { | |
sh 'echo stuff done in parallel' | |
}, | |
redX: { | |
sh 'echo stuff done in parallel' | |
}, | |
yellowX: { | |
sh 'echo stuff done in parallel' | |
}, | |
blackX: { | |
sh 'echo stuff done in parallel' | |
}, | |
whiteX: { | |
sh 'echo stuff done in parallel' | |
}, | |
blueY: { | |
sh 'echo stuff done in parallel' | |
}, | |
greenY: { | |
sh 'echo stuff done in parallel' | |
}, | |
redY: { | |
sh 'echo stuff done in parallel' | |
}, | |
yellowY: { | |
sh 'echo stuff done in parallel' | |
}, | |
blackY: { | |
sh 'echo stuff done in parallel' | |
}, | |
whiteY: { | |
sh 'echo stuff done in parallel' | |
}, | |
blueXY: { | |
sh 'echo stuff done in parallel' | |
}, | |
greenXY: { | |
sh 'echo stuff done in parallel' | |
}, | |
redXY: { | |
sh 'echo stuff done in parallel' | |
}, | |
yellowXY: { | |
sh 'echo stuff done in parallel' | |
}, | |
blackXY: { | |
sh 'echo stuff done in parallel' | |
}, | |
whiteXY: { | |
sh 'echo stuff done in parallel' | |
} | |
) | |
} | |
stage('Mike') { | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'echo doing stuff' | |
sh 'sleep 10' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment