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

21 lines
266 B
Groovy

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