lostplaces-backend/Jenkinsfile
2021-07-10 13:30:10 +02:00

27 lines
324 B
Groovy

pipeline {
agent any
stages {
stage("sync") {
steps {
script {
git pull
git checkout develop
}
}
}
stage("migration") {
script {
pipenv run makemigrations
}
}
stage("build") {
script {
cd django_lostplaces
python setup.py bdist_wheel --universal
}
}
}
}