Files
workout_buddy/Jenkinsfile

21 lines
429 B
Plaintext
Raw Normal View History

2024-11-17 11:56:07 -05:00
pipeline {
2024-11-17 15:06:16 -05:00
agent { label 'jenkins-agent' }
2024-11-17 11:56:07 -05:00
stages {
stage('Build') {
steps {
2024-11-17 15:36:10 -05:00
sh 'docker-compose build'
2024-11-17 11:56:07 -05:00
}
}
2024-11-17 17:16:10 -05:00
/*stage('Test') {
steps {
2024-11-17 15:36:10 -05:00
sh 'docker-compose run --rm app python -m pytest'
2024-11-17 17:16:10 -05:00
}
}*/
2024-11-17 11:56:07 -05:00
stage('Deploy') {
steps {
2024-11-17 15:36:10 -05:00
sh 'docker-compose up -d'
2024-11-17 11:56:07 -05:00
}
}
}
}