From a5ad271a525cdd1d637a664bd0360848d229e440 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 8 Oct 2019 10:28:05 -0400 Subject: Refactor package structure --- src/BuildConfig.groovy | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 src/BuildConfig.groovy (limited to 'src/BuildConfig.groovy') 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 = "" -} -- cgit