diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-03-08 11:44:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 11:44:55 -0500 |
commit | cf8bb87be6b64700ac67cfa02af922f76786c290 (patch) | |
tree | 6f6719c1751c1d06fedc2ff377cd455f7a1e22e4 /src | |
parent | 93e64011d54e1b305472926e17768e634e560230 (diff) | |
download | jscu_refactor-cf8bb87be6b64700ac67cfa02af922f76786c290.tar.gz |
conda environment list publication capability (#37)1.3.7
* Add support for publishing conda environment specs to artifactory.
* Add docs for env publication feature
Diffstat (limited to 'src')
-rw-r--r-- | src/BuildConfig.groovy | 7 | ||||
-rw-r--r-- | src/JobConfig.groovy | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/BuildConfig.groovy b/src/BuildConfig.groovy index e42ec71..67a97a5 100644 --- a/src/BuildConfig.groovy +++ b/src/BuildConfig.groovy @@ -33,3 +33,10 @@ class BuildConfig implements Serializable { this.nodetype = "" } } + + +class testInfo implements Serializable { + def problems = false + def subject = "" + def message = "" +} diff --git a/src/JobConfig.groovy b/src/JobConfig.groovy index 6a44ed2..6411917 100644 --- a/src/JobConfig.groovy +++ b/src/JobConfig.groovy @@ -6,6 +6,10 @@ class JobConfig implements Serializable { 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 |