aboutsummaryrefslogtreecommitdiff
path: root/src/BuildConfig.groovy
blob: a954c2233762891e2afdd25524083a43bd69f802 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// src/BuildConfig.groovy
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 = []
    def test_cmds = []
    def test_configs = []

    def failedFailureNewThresh = ''
    def failedFailureThresh = ''
    def failedUnstableNewThresh = ''
    def failedUnstableThresh= ''

    def skippedFailureNewThresh = ''
    def skippedFailureThresh = ''
    def skippedUnstableNewThresh = ''
    def skippedUnstableThresh= ''

    // Constructors
    BuildConfig() {
        this.nodetype = ""
    }
}