This commit is contained in:
reverend 2021-07-10 13:31:34 +02:00
parent 1960bf3792
commit 1d787a3b1d
1 changed files with 9 additions and 5 deletions

14
Jenkinsfile vendored
View File

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