Odoo18-Base/Jenkinsfile

17 lines
241 B
Plaintext
Raw Normal View History

2025-01-07 12:20:00 +07:00
node('node'){
currentBuild.result = "SUCCESS"
try {
stage('Checkout'){
2025-01-06 13:44:28 +07:00
2025-01-07 12:20:00 +07:00
checkout scm
}
stage('Test'){
}
} catch (err) {
currentBuild.result = "FAILURE"
throw err
2025-01-06 13:44:28 +07:00
}
}