Odoo18-Base/Jenkinsfile

21 lines
357 B
Plaintext
Raw Normal View History

2025-01-06 13:44:28 +07:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}