Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/usr/bin/env groovy
  2.  
  3. node('master') {
  4. properties([
  5. [$class: 'BuildDiscarderProperty', strategy: [$class: 'LogRotator', numToKeepStr: '10']]
  6. ]);
  7.  
  8. stage 'Checkout'
  9. checkout scm
  10.  
  11. stage 'Build'
  12. sh([script: "make build"]);
  13.  
  14. archive("bin/*");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement