This commit is contained in:
reverend 2021-07-10 13:31:34 +02:00
parent 1960bf3792
commit 1d787a3b1d

4
Jenkinsfile vendored
View File

@ -12,12 +12,15 @@ pipeline {
} }
stage("migration") { stage("migration") {
steps {
script { script {
pipenv run makemigrations pipenv run makemigrations
} }
} }
}
stage("build") { stage("build") {
steps {
script { script {
cd django_lostplaces cd django_lostplaces
python setup.py bdist_wheel --universal python setup.py bdist_wheel --universal
@ -25,3 +28,4 @@ pipeline {
} }
} }
} }
}