Odoo18-Base/Jenkinsfile

17 lines
241 B
Groovy

node('node'){
currentBuild.result = "SUCCESS"
try {
stage('Checkout'){
checkout scm
}
stage('Test'){
}
} catch (err) {
currentBuild.result = "FAILURE"
throw err
}
}