19 lines
267 B
Groovy
19 lines
267 B
Groovy
pipeline {
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'pip install -r requirements.txt'
|
|
}
|
|
}
|
|
stage('test') {
|
|
steps {
|
|
sh 'flake baseline.py'
|
|
}
|
|
}
|
|
stage('run') {
|
|
steps {
|
|
sh 'run.sh'
|
|
}
|
|
}
|
|
}
|
|
} |