aboutsummaryrefslogtreecommitdiff
path: root/src/JobConfig.groovy
blob: cd299b6d49c3e1fd876523a606dee4d7ef3f6c37 (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
// 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

    def credentials = null

    // Build retention control
    def builds_to_keep = -1

    // Development
    def debug = false

    // Constructors
    JobConfig() {}
}