From 6f9097e70143f87c10a28b82996c44c81b71a4e0 Mon Sep 17 00:00:00 2001 From: Shane MacBride Date: Fri, 18 Aug 2017 11:12:38 -0700 Subject: [PATCH] rm deploy --- Jenkinsfile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index afb5e0559..0423fbf13 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,18 +15,5 @@ pipeline { } } } - stage('Deploy') { - agent { - docker { - image 'liatrio/cf-cli' - } - } - steps { - withCredentials([usernamePassword(credentialsId: 'pivotal', passwordVariable: 'PASSWORD', usernameVariable: 'USERNAME')]) { - sh "cf api https://api.run.pivotal.io && cf login -u ${env.USERNAME} -p ${env.PASSWORD}" - sh 'cf push' - } - } - } } }