From 4ccd8dae5c0ae595dbeb4291b634236e5110c2f9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 5 Jul 2017 13:34:34 -0400 Subject: Update Jenkinsfile --- Jenkinsfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fcb1e0c..a26887a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,10 +9,13 @@ pipeline { stages { stage('Bootstrap') { steps { + println("Bootstrapping..") script { - cinst = new CondaInstaller("${WORKSPACE}/tmp") - cinst.install() + println("IN script block") + cinst = new CondaInstaller("/tmp/killme") + cinst.install() } + println("OUT of script block") } } stage('Build') { -- cgit