aboutsummaryrefslogtreecommitdiff
path: root/src/JobConfig.groovy
blob: 64119172030c961e392925515a798f68ed4d513a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// src/JobConfig.groovy

class JobConfig implements Serializable {

    // Regression testing summary control
    def post_test_summary = false
    def all_posts_in_same_issue = true

    // Conda environment specification file publication control
    def enable_env_publication = false
    def publish_env_on_success_only = true

    // Build retention control
    def builds_to_keep = -1

    // Development
    def debug = false

    // Constructors
    JobConfig() {}
}