Odoo18-Base/Jenkinsfile

21 lines
370 B
Plaintext
Raw Normal View History

2025-01-06 13:44:28 +07:00
pipeline {
2025-01-06 17:53:22 +07:00
agent Node-Dev-100163
2025-01-06 13:44:28 +07:00
stages {
stage('Build') {
steps {
2025-01-06 17:48:48 +07:00
sh 'make install'
2025-01-06 13:44:28 +07:00
}
}
stage('Test') {
steps {
2025-01-06 17:48:48 +07:00
echo 'Testing...'
2025-01-06 13:44:28 +07:00
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}