aboutsummaryrefslogtreecommitdiff
path: root/src/JobConfig.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/JobConfig.groovy
parent2b2f452d1724b4db9df4c9065b2ad51acdaf4910 (diff)
downloadjscu_refactor-a5ad271a525cdd1d637a664bd0360848d229e440.tar.gz
Refactor package structure
Diffstat (limited to 'src/JobConfig.groovy')
-rw-r--r--src/JobConfig.groovy23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/JobConfig.groovy b/src/JobConfig.groovy
deleted file mode 100644
index cd299b6..0000000
--- a/src/JobConfig.groovy
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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() {}
-}