From 2c6676d2c9eb0643c5ea70d3643aa8903ddab1af Mon Sep 17 00:00:00 2001 From: reverend Date: Sat, 10 Jul 2021 13:25:58 +0200 Subject: [PATCH] Havin' fun with jenkins --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 44dadca..23ee3df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,18 +4,18 @@ pipeline { stages { stage('sync') { steps { - sh 'git pull' - sh 'git checkout develop' + git pull + git checkout develop } } stage('migration') { - sh 'pipenv run makemigrations' + pipenv run makemigrations } stage('build') { - sh 'cd django_lostplaces' - sh 'python setup.py bdist_wheel --universal' + cd django_lostplaces + python setup.py bdist_wheel --universal } } } \ No newline at end of file