Merge "Publish pipeline logs to artifactory"

This commit is contained in:
Zuul 2019-03-14 21:21:51 +00:00 committed by Gerrit Code Review
commit 1fbe3e9e44
2 changed files with 11 additions and 1 deletions

View File

@ -318,7 +318,9 @@ def sanity_tests = {
//// main flow
vm(timeout: 360, publicNet: 'foundry') {
vm(timeout: 360,
publicNet: 'foundry',
artifactoryLogs: ARTIFACTORY_LOGS.toBoolean()) {
// wait and make sure genesis is up
ssh.wait (GENESIS_CREDS, GENESIS_IP, 'hostname')

View File

@ -15,6 +15,14 @@ pipelineJob('airship-seaworthy') {
name("AIRSHIP_MANIFESTS_REF")
trim(true)
}
booleanParam {
defaultValue(true)
description('Flag to publish the console log from the pipeline run to artifactory. ' +
'Set this value to false, if you should want to suppress uploading ' +
'and publishing of the pipeline logs to the artifactory.')
name("ARTIFACTORY_LOGS")
}
}