diff options
| author | Matt Rendina <mrendina@stsci.edu> | 2017-11-28 11:12:36 -0500 |
|---|---|---|
| committer | Matt Rendina <mrendina@stsci.edu> | 2017-11-28 11:12:36 -0500 |
| commit | 0230f29c1429e44b56b0e3cfddd0fc872ef477d0 (patch) | |
| tree | 0578b62fcc737191fd80796726f9d3d22e458efb | |
| parent | f2591d9ccbaf687a3d1840c9a3a867774c35b05b (diff) | |
| download | jscu_refactor-0230f29c1429e44b56b0e3cfddd0fc872ef477d0.tar.gz | |
Test withEnv
| -rw-r--r-- | vars/utils.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index ba23db3..24a050a 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -38,7 +38,7 @@ def concurrent(configs) { myconfig = config.copy() tasks["${config.nodetype}/${config.build_mode}"] = { node(config.nodetype) { - //withEnv(config.env_vars) { + withEnv(myconfig.env_vars) { println("task: myconfig.nodetype = ${myconfig.nodetype}") println("task: myconfig.build_mode = ${myconfig.build_mode}") println("task: myconfig.build_args = ${myconfig.build_args}") @@ -54,7 +54,7 @@ def concurrent(configs) { println("RUNNING TESTS") } } - //} //end withEnv + } //end withEnv } // end node } } //end for |
