diff options
| author | Matt Rendina <mrendina@stsci.edu> | 2017-11-27 16:23:53 -0500 |
|---|---|---|
| committer | Matt Rendina <mrendina@stsci.edu> | 2017-11-27 16:23:53 -0500 |
| commit | cf50366631d217cd835edad49e2aaff13794557e (patch) | |
| tree | 0fdbc9aca05b2821d09d1732a32e34d4a3140ca7 | |
| parent | c0ab6c51500d0212453ffe40ffdf493700109401 (diff) | |
| download | jscu_refactor-cf50366631d217cd835edad49e2aaff13794557e.tar.gz | |
Remove env for now
| -rw-r--r-- | vars/utils.groovy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index 735122f..4a8d490 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -35,13 +35,13 @@ def concurrent2(configs) { println("concurrent2: build.nodetype = ${config.nodetype}") tasks["${config.nodetype}/${config.build_mode}"] = { node(config.nodetype) { - withEnv(config.env_vars) { + //withEnv(config.env_vars) { def prefix = pwd() + "/_install" stage("Build (${config.build_mode})") { unstash "source_tree" - sh "ls -al" + sh(script: "ls -al") } //end stage - } //end withEnv + //} //end withEnv } // end node } } //end for |
