From 6b33d20f9083ef6b24b82f56b944bdfdc4236a50 Mon Sep 17 00:00:00 2001 From: reverend Date: Sat, 10 Jul 2021 13:32:56 +0200 Subject: [PATCH] :: --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c128f6e..953f703 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,28 +2,28 @@ pipeline { agent any stages { - stage("sync") { + stage('sync') { steps { script { - git pull - git checkout develop + sh 'git pull' + sh 'git checkout develop' } } } - stage("migration") { + stage('migration') { steps { script { - pipenv run makemigrations + sh 'pipenv run makemigrations' } } } - stage("build") { + stage('build') { steps { script { - cd django_lostplaces - python setup.py bdist_wheel --universal + sh 'cd django_lostplaces' + sh 'python setup.py bdist_wheel --universal' } } }