Odoo18-Base/Jenkinsfile
2025-01-07 14:44:26 +07:00

19 lines
477 B
Groovy

node('Node-Dev-100163') {
try {
stage('Checkout') {
checkout scm
}
stage('Setup') {
sh 'make install'
}
stage('Testing') {
sh 'make gen_test_config'
sh 'make run_test'
sh 'make clean_test'
}
currentBuild.result = "SUCCESS" // Set success status after all stages complete
} catch (err) {
currentBuild.result = "FAILURE"
throw err
}
}