Jenkinsfile-basic 148 B

123456789101112131415161718192021
  1. #!groovy
  2. pipeline
  3. {
  4. agent none
  5. stages
  6. {
  7. stage('Tarball')
  8. {
  9. steps
  10. {
  11. node('autotools')
  12. {
  13. checkout scm
  14. }
  15. }
  16. }
  17. }
  18. }