Guest User

Untitled

a guest
Dec 13th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. stage('Build'){
  2. when{
  3. anyOf{
  4. allOf{
  5. expression{env.BRANCH_NAME != 'master'}
  6. expression{env.AUTO_BUILD == true && env.BUILD_OPT == snapshot && env.BRANCH_NAME !=~ /feature.+/}
  7. }
  8. expression{env.AUTO_BUILD == false}
  9. }
  10. }
  11. steps{
  12. echo env.AUTO_BUILD
  13. echo env.BUILD_OPT
  14. echo env.BRANCH_NAME
  15. }
Add Comment
Please, Sign In to add comment