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