diff options
-rw-r--r-- | Jenkinsfile | 7 |
1 files 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') { |