MagicPodcast/Jenkinsfile

19 lines
295 B
Plaintext
Raw Normal View History

2020-12-07 16:53:57 +01:00
pipeline {
agent { docker { image 'python:3.9' } }
stages {
stage('build') {
steps {
sh 'pip install pipenv'
sh 'pipenv shell --python 3.9'
sh 'pipenv install'
}
}
stage('test') {
steps {
sh './run_tests.sh'
}
}
}
}
JENKINSFILE