diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-03-21 12:38:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 12:38:13 -0400 |
commit | 362ed861198e0ff15bbf4df8e5c048ca20e975b4 (patch) | |
tree | 5cfc384cc755b931d56391b971d4acc30c9a7ce5 /src | |
parent | fd66dd6dcd026ff3cc0651bd3f5e83e3f1f84e8c (diff) | |
download | jscu_refactor-362ed861198e0ff15bbf4df8e5c048ca20e975b4.tar.gz |
Test secret injection (#42)
Provide default credentials property in JobConfig class
Convert credential env var value to java string
Remove display of env var values.
Diffstat (limited to 'src')
-rw-r--r-- | src/JobConfig.groovy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/JobConfig.groovy b/src/JobConfig.groovy index 6411917..cd299b6 100644 --- a/src/JobConfig.groovy +++ b/src/JobConfig.groovy @@ -10,6 +10,8 @@ class JobConfig implements Serializable { def enable_env_publication = false def publish_env_on_success_only = true + def credentials = null + // Build retention control def builds_to_keep = -1 |