From c27e1a3ef38d3184f4d7bd132f0f4a86349549eb Mon Sep 17 00:00:00 2001 From: Suwako Moriya Date: Sun, 26 Apr 2020 21:25:19 +0200 Subject: [PATCH] Trying to get the skip to work --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 213dc6c..ca6398e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { stages { stage('Install Dependencies') { steps { - sh 'pipenv sync --sequential --dev' + sh 'pipenv sync --dev' } } @@ -48,7 +48,7 @@ pipeline { when { anyOf { branch 'stable' - branch 'unstable' + branch 'master' buildingTag() } }