diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-06-11 12:25:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 12:25:11 -0400 |
commit | 9883adb887574f646881a04d436b840466def4d7 (patch) | |
tree | 9e8be0e114d9c3beb7b77049769efb671465b7b0 /src | |
parent | 53433e4e32dd894447f1581b826aa3c7dfa9a8c9 (diff) | |
download | jscu_refactor-9883adb887574f646881a04d436b840466def4d7.tar.gz |
Condavenience (#4)1.1.0
* Add BuildConfig properties to support automatic conda environment creation for hosting the job when conda_packages list property is populated.
* `.conda_packages = []`
* `.conda_override_channels = false`
* `.conda_channels = []`
Diffstat (limited to 'src')
-rw-r--r-- | src/BuildConfig.groovy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy index 5fd1687..1eb98be 100644 --- a/src/BuildConfig.groovy +++ b/src/BuildConfig.groovy @@ -4,6 +4,10 @@ package BuildConfig; class BuildConfig implements Serializable { def nodetype = "" def build_mode = "" + def name = "" + def conda_packages = [] + def conda_override_channels = false + def conda_channels = [] def env_vars = [] def env_vars_raw = [] def build_cmds = [] |