diff options
author | Matt Rendina <mrendina@stsci.edu> | 2018-05-07 12:20:06 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2018-05-07 12:20:06 -0400 |
commit | d089296d81797a0f1495531b89da6d7df1da3570 (patch) | |
tree | 6444633f55708e7e0fb289bbef52b0d55d5ef981 /src | |
download | jscu_refactor-d089296d81797a0f1495531b89da6d7df1da3570.tar.gz |
Initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/BuildConfig.groovy | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy new file mode 100644 index 0000000..5fd1687 --- /dev/null +++ b/src/BuildConfig.groovy @@ -0,0 +1,26 @@ +// src/BuildConfig.groovy +package BuildConfig; + +class BuildConfig implements Serializable { + def nodetype = "" + def build_mode = "" + def env_vars = [] + def env_vars_raw = [] + def build_cmds = [] + def test_cmds = [] + + def failedFailureNewThresh = '' + def failedFailureThresh = '' + def failedUnstableNewThresh = '' + def failedUnstableThresh= '' + + def skippedFailureNewThresh = '' + def skippedFailureThresh = '' + def skippedUnstableNewThresh = '' + def skippedUnstableThresh= '' + + // Constructors + BuildConfig() { + this.nodetype = "" + } +} |