diff --git a/parameterized-builds b/parameterized-builds deleted file mode 100644 index 9e650f573f3..00000000000 --- a/parameterized-builds +++ /dev/null @@ -1,8 +0,0 @@ -properties([parameters([choice(choices: 'master\nfeature-1\nfeature-2', description: 'Choose the branch to build', name: 'branch')])]) - -node{ - stage('Scm Checkout'){ - echo "Pulling changes from ${params.branch}" - git url: 'https://github.com/javahometech/my-app', branch: "${params.branch}" - } -}