Jenkinsfile-basic 195 B

12345678910111213141516171819202122
  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. sh 'contrib/ci.inria.fr/job-0-tarball.sh'
  15. }
  16. }
  17. }
  18. }
  19. }