Guest User

Untitled

a guest
Sep 26th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. pipeline {
  2.  
  3. agent { label 'slave' }
  4.  
  5. stages {
  6.  
  7. stage('Build') {
  8.  
  9. steps {
  10.  
  11. sh 'make s3'
  12.  
  13. }
  14.  
  15. }
  16.  
  17. stage('Package Artifact') {
  18.  
  19. steps {
  20.  
  21. echo "hola"
  22.  
  23.  
  24. }
  25.  
  26. }
  27.  
  28. }
  29.  
  30. }
Add Comment
Please, Sign In to add comment