This commit is contained in:
reverend 2021-07-10 13:32:56 +02:00
parent 1d787a3b1d
commit 6b33d20f90

16
Jenkinsfile vendored
View File

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