Add build scan tag when running in FIPS mode (#55960)
This commit is contained in:
parent
43dab77186
commit
07a3d808ee
|
@ -15,6 +15,11 @@ buildScan {
|
||||||
|
|
||||||
tag OS.current().name()
|
tag OS.current().name()
|
||||||
|
|
||||||
|
// Tag if this build is run in FIPS mode
|
||||||
|
if (BuildParams.inFipsJvm) {
|
||||||
|
tag 'FIPS'
|
||||||
|
}
|
||||||
|
|
||||||
// Automatically publish scans from Elasticsearch CI
|
// Automatically publish scans from Elasticsearch CI
|
||||||
if (jenkinsUrl?.host?.endsWith('elastic.co')) {
|
if (jenkinsUrl?.host?.endsWith('elastic.co')) {
|
||||||
publishAlways()
|
publishAlways()
|
||||||
|
|
Loading…
Reference in New Issue