Jenkinsfile 171 B

1234567891011
  1. pipeline {
  2. agent { label 'amd64'}
  3. stages {
  4. stage('Build') {
  5. steps {
  6. sh '/bin/bash ./build.sh'
  7. }
  8. }
  9. }
  10. }