Skip to content

Instantly share code, notes, and snippets.

@gabber12
Created April 25, 2017 19:16
Show Gist options
  • Save gabber12/06fb8f238bbaf43ae0fd08d2baa74b85 to your computer and use it in GitHub Desktop.
Save gabber12/06fb8f238bbaf43ae0fd08d2baa74b85 to your computer and use it in GitHub Desktop.
Simple JenkinsFile for testing
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
parallel(
"Test": {
echo 'Testing..'
},
"Integration Test": {
echo 'Integration Test...'
}
)
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment