aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2017-07-05 13:34:34 -0400
committerGitHub <noreply@github.com>2017-07-05 13:34:34 -0400
commit4ccd8dae5c0ae595dbeb4291b634236e5110c2f9 (patch)
treedfe996b2b08dde92887af4f9a1b9a67aba6c0ef8
parentef1b5561cadaa5088fc44c8e8a6b716604a52718 (diff)
downloadhello_world-4ccd8dae5c0ae595dbeb4291b634236e5110c2f9.tar.gz
Update JenkinsfileHEADmaster
-rw-r--r--Jenkinsfile7
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') {