This commit is contained in:
reverend 2021-07-10 13:27:46 +02:00
parent 2c6676d2c9
commit 0c3898163e

16
Jenkinsfile vendored
View File

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