Fix SamlAuthenticationIT flakyness (#103867)

This commit is contained in:
Rene Groeschke 2024-01-24 19:44:31 +01:00 committed by GitHub
parent 83634375f9
commit ab8ee60bba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 108 additions and 170 deletions

View file

@ -398,7 +398,7 @@ void addBuildDockerImageTask(Architecture architecture, DockerBase base) {
noCache = BuildParams.isCi
tags = generateTags(base, architecture)
platform = architecture.dockerPlatform
platforms.add(architecture.dockerPlatform)
// We don't build the Iron Bank image when we release Elasticsearch, as there's
// separate process for submitting new releases. However, for testing we do a
@ -468,7 +468,7 @@ void addBuildEssDockerImageTask(Architecture architecture) {
noCache = BuildParams.isCi
baseImages = []
tags = generateTags(base, architecture)
platform = architecture.dockerPlatform
platforms.add(architecture.dockerPlatform)
onlyIf("$architecture supported") { isArchitectureSupported(architecture) }
}