Last active
June 30, 2019 19:47
-
-
Save Osein/fbfba9133dac32d948dc96bb71123909 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| stage('Run Unit and UI Tests') { | |
| when { | |
| expression { | |
| return env.shouldBuild != "false" | |
| } | |
| } | |
| steps { | |
| script { | |
| try { | |
| // Run your tests here | |
| } catch(exc) { | |
| currentBuild.result = "UNSTABLE" | |
| error('There are failed tests.') | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment