Add build scan tag when running in FIPS mode (#55960)

This commit is contained in:
Mark Vieira 2020-04-29 14:29:35 -07:00
parent 43dab77186
commit 07a3d808ee
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@ buildScan {
tag OS.current().name()
// Tag if this build is run in FIPS mode
if (BuildParams.inFipsJvm) {
tag 'FIPS'
}
// Automatically publish scans from Elasticsearch CI
if (jenkinsUrl?.host?.endsWith('elastic.co')) {
publishAlways()