diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-07-05 13:34:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 13:34:34 -0400 |
commit | 4ccd8dae5c0ae595dbeb4291b634236e5110c2f9 (patch) | |
tree | dfe996b2b08dde92887af4f9a1b9a67aba6c0ef8 | |
parent | ef1b5561cadaa5088fc44c8e8a6b716604a52718 (diff) | |
download | hello_world-master.tar.gz |
-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') { |