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