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

14
Jenkinsfile vendored
View File

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