Odoo18-Base/Jenkinsfile

21 lines
371 B
Plaintext
Raw Normal View History

2025-01-06 13:44:28 +07:00
pipeline {
2025-01-06 17:57:50 +07:00
agent {label 'Node-Dev-100163'}
2025-01-06 13:44:28 +07:00
stages {
stage('Build') {
steps {
2025-01-06 18:19:42 +07:00
sh 'pwd'
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....'
}
}
}
}