From a4a55e133bf7d3b981598cfe17cbfd6437d6a53b Mon Sep 17 00:00:00 2001 From: Nana Janashia Date: Wed, 11 Nov 2020 16:45:14 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e22f659..b505f47 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,16 +5,10 @@ pipeline { steps { script { echo "Testing the application..." - echo "Executing pipeline for branch $BRANCH_NAME" } } } stage('build') { - when { - expression { - BRANCH_NAME == 'master' - } - } steps { script { echo "Building the application..." @@ -22,11 +16,6 @@ pipeline { } } stage('deploy') { - when { - expression { - BRANCH_NAME == 'master' - } - } steps { script { echo "Deploying the application..."