mieszkania5/Jenkinsfile

20 lines
315 B
Plaintext
Raw Normal View History

2023-10-24 14:03:53 +02:00
pipeline {
2023-10-24 14:23:27 +02:00
// agent { docker { image 'python:3.10.10' } }
2023-10-24 14:03:53 +02:00
stages {
stage('build') {
steps {
sh 'pip install -r requirements.txt'
}
}
stage('test') {
steps {
sh 'flake baseline.py'
}
}
stage('run') {
steps {
sh 'run.sh'
}
}
}
}