aboutsummaryrefslogtreecommitdiff
path: root/src/BuildConfig.groovy
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-10-08 10:28:05 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-10-08 10:28:05 -0400
commita5ad271a525cdd1d637a664bd0360848d229e440 (patch)
tree26eadbcb31c1f6d534a7ba72e8ae0007e5cd0b6e /src/BuildConfig.groovy
parent2b2f452d1724b4db9df4c9065b2ad51acdaf4910 (diff)
downloadjscu_refactor-a5ad271a525cdd1d637a664bd0360848d229e440.tar.gz
Refactor package structure
Diffstat (limited to 'src/BuildConfig.groovy')
-rw-r--r--src/BuildConfig.groovy46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy
deleted file mode 100644
index 0b3cc06..0000000
--- a/src/BuildConfig.groovy
+++ /dev/null
@@ -1,46 +0,0 @@
-// src/BuildConfig.groovy
-
-class BuildConfig implements Serializable {
- def nodetype = ""
- def name = ""
-
- def conda_packages = []
- def conda_override_channels = false
- def conda_channels = []
- def conda_ver = null
-
- def env_vars = []
- def env_vars_raw = []
- def build_cmds = []
- def test_cmds = []
- def test_configs = []
-
- def failedFailureNewThresh = ''
- def failedFailureThresh = ''
- def failedUnstableNewThresh = ''
- def failedUnstableThresh= '0'
-
- def skippedFailureNewThresh = ''
- def skippedFailureThresh = ''
- def skippedUnstableNewThresh = ''
- def skippedUnstableThresh= ''
-
- // Scheduling - default behavior is to not restrict run schedule based on
- // the day of the week.
- def run_on_days = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat']
-
- // Private. Not to be used directly by Jenkinsfile.
- def runtime = []
-
- // Constructors
- BuildConfig() {
- this.nodetype = ""
- }
-}
-
-
-class testInfo implements Serializable {
- def problems = false
- def subject = ""
- def message = ""
-}