jenkinsfile 347 B

12345678910111213141516171819202122
  1. #!/usr/bin/env groovy
  2. node {
  3. try {
  4. parallel (
  5. checkout: {
  6. stage('Checkout'){
  7. checkout scm
  8. }
  9. },
  10. )
  11. stage('build') {
  12. sh 'make build-keep-going'
  13. }
  14. } catch (e) {
  15. currentBuild.result = "FAILED"
  16. throw e
  17. } finally {
  18. echo 'final'
  19. }
  20. }