Odoo18-Base/Jenkinsfile

27 lines
551 B
Plaintext
Raw Normal View History

node('Node-Dev-100163'){
2025-01-07 12:20:00 +07:00
currentBuild.result = "SUCCESS"
try {
stage('Checkout'){
checkout scm
}
stage('Setup'){
steps {
sh 'make install'
}
}
stage('Testing'){
steps {
sh 'make gen_test_config'
}
steps{
sh 'make run_test'
}
steps{
sh 'make clean_test'
}
}
} catch (err) {
2025-01-07 12:20:00 +07:00
currentBuild.result = "FAILURE"
throw err
2025-01-06 13:44:28 +07:00
}
}