aboutsummaryrefslogtreecommitdiff
path: root/src/BuildConfig.groovy
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-11-30 11:29:17 -0500
committerMatt Rendina <mrendina@stsci.edu>2017-11-30 11:29:17 -0500
commit9af384444bc71487b048504bd84e7b7eca992dcf (patch)
treeb7934f641f6e03344bda4b64c295b00b6eac68cf /src/BuildConfig.groovy
parent73378bef9b5d9b7aaef91d77a584a1c244ec9b64 (diff)
downloadjscu_refactor-9af384444bc71487b048504bd84e7b7eca992dcf.tar.gz
Simplified class
Diffstat (limited to 'src/BuildConfig.groovy')
-rw-r--r--src/BuildConfig.groovy20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy
index cd4f513..3a22bdf 100644
--- a/src/BuildConfig.groovy
+++ b/src/BuildConfig.groovy
@@ -43,3 +43,23 @@ class BuildConfig implements Serializable {
}
}
}
+
+
+class BuildConfig2 implements Serializable {
+ def nodetype = ""
+ def build_mode = ""
+ def env_vars = []
+ def build_cmds = []
+ def test_cmds = []
+ def run_tests = true
+
+ def failedFailureNewThresh = ''
+ def failedFailureThresh = ''
+ def failedUnstableNewThresh = ''
+ def failedUnstableThresh= ''
+
+ def skippedFailureNewThresh = ''
+ def skippedFailureThresh = ''
+ def skippedUnstableNewThresh = ''
+ def skippedUnstableThresh= ''
+}