File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ elasticsearch_distributions {
244
244
}
245
245
246
246
tasks. named(" preProcessFixture" ). configure {
247
- dependsOn elasticsearch_distributions. docker_default, elasticsearch_distributions . docker_oss
247
+ dependsOn elasticsearch_distributions. matching { it . architecture == Architecture . current() }
248
248
dependsOn " copyNodeKeyMaterial"
249
249
doLast {
250
250
// tests expect to have an empty repo
Original file line number Diff line number Diff line change
1
+ import org.elasticsearch.gradle.Architecture
1
2
import org.elasticsearch.gradle.OS
2
3
import org.elasticsearch.gradle.info.BuildParams
3
4
import org.gradle.initialization.BuildRequestMetaData
@@ -14,6 +15,7 @@ buildScan {
14
15
String nodeName = System . getenv(' NODE_NAME' )
15
16
16
17
tag OS . current(). name()
18
+ tag Architecture . current(). name()
17
19
18
20
// Tag if this build is run in FIPS mode
19
21
if (BuildParams . inFipsJvm) {
You can’t perform that action at this time.
0 commit comments