Created
April 25, 2017 19:16
-
-
Save gabber12/06fb8f238bbaf43ae0fd08d2baa74b85 to your computer and use it in GitHub Desktop.
Simple JenkinsFile for testing
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 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