23 lines
347 B
Groovy
23 lines
347 B
Groovy
#!/usr/bin/env groovy
|
|
node {
|
|
try {
|
|
parallel (
|
|
checkout: {
|
|
stage('Checkout'){
|
|
checkout scm
|
|
}
|
|
},
|
|
)
|
|
|
|
stage('build') {
|
|
sh 'make build-keep-going'
|
|
}
|
|
|
|
} catch (e) {
|
|
currentBuild.result = "FAILED"
|
|
throw e
|
|
} finally {
|
|
echo 'final'
|
|
}
|
|
}
|