This commit is contained in:
reverend 2021-07-10 13:27:46 +02:00
parent 2c6676d2c9
commit 0c3898163e
1 changed files with 8 additions and 8 deletions

16
Jenkinsfile vendored
View File

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