Skip to content

Commit af12b80

Browse files
authored
Merge branch 'main' into rn-test2
2 parents f66d843 + 543b612 commit af12b80

File tree

1,520 files changed

+40892
-14769
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,520 files changed

+40892
-14769
lines changed

.buildkite/hooks/pre-command

Lines changed: 50 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ if [[ "${SMART_RETRIES:-}" == "true" && "${BUILDKITE_RETRY_COUNT:-0}" -gt 0 ]];
152152

153153
if BUILD_JSON=$(curl --max-time 30 -H "Authorization: Bearer $BUILDKITE_API_TOKEN" -X GET "https://api.buildkite.com/v2/organizations/elastic/pipelines/${BUILDKITE_PIPELINE_SLUG}/builds/${BUILDKITE_BUILD_NUMBER}?include_retried_jobs=true" 2>/dev/null); then
154154
if ORIGIN_JOB_ID=$(printf '%s\n' "$BUILD_JSON" | jq -r --arg jobId "$BUILDKITE_JOB_ID" ' .jobs[] | select(.id == $jobId) | .retry_source.job_id' 2>/dev/null) && [ "$ORIGIN_JOB_ID" != "null" ] && [ -n "$ORIGIN_JOB_ID" ]; then
155-
155+
156156
# Attempt to retrieve build scan ID directly from metadata
157157
BUILD_SCAN_ID=$(printf '%s\n' "$BUILD_JSON" | jq -r --arg job_id "$ORIGIN_JOB_ID" '.meta_data["build-scan-id-" + $job_id]' 2>/dev/null)
158158

@@ -171,6 +171,53 @@ if [[ "${SMART_RETRIES:-}" == "true" && "${BUILDKITE_RETRY_COUNT:-0}" -gt 0 ]];
171171
DEVELOCITY_BASE_URL="${DEVELOCITY_BASE_URL:-https://gradle-enterprise.elastic.co}"
172172
DEVELOCITY_FAILED_TEST_API_URL="${DEVELOCITY_BASE_URL}/api/tests/build/${BUILD_SCAN_ID}?testOutcomes=failed"
173173

174+
# Fetch test seed from build scan custom values
175+
# Support both DEVELOCITY_API_KEY and DEVELOCITY_API_ACCESS_KEY
176+
API_KEY="${DEVELOCITY_API_KEY:-$DEVELOCITY_API_ACCESS_KEY}"
177+
178+
if [[ -z "$API_KEY" ]]; then
179+
echo "Warning: No Develocity API key available (DEVELOCITY_API_KEY or DEVELOCITY_API_ACCESS_KEY)"
180+
echo "Test seed retrieval will be skipped"
181+
else
182+
DEVELOCITY_BUILD_SCAN_API_URL="${DEVELOCITY_BASE_URL}/api/builds/${BUILD_SCAN_ID}?models=gradle-attributes"
183+
TESTS_SEED=""
184+
185+
echo "Fetching test seed from build scan: $BUILD_SCAN_ID"
186+
echo "API URL: $DEVELOCITY_BUILD_SCAN_API_URL"
187+
188+
if BUILD_SCAN_DATA=$(curl --silent --show-error --compressed --request GET \
189+
--url "$DEVELOCITY_BUILD_SCAN_API_URL" \
190+
--max-time 30 \
191+
--header 'accept: application/json' \
192+
--header "authorization: Bearer $API_KEY" \
193+
--header 'content-type: application/json' 2>&1); then
194+
195+
# Check if we got valid JSON
196+
if echo "$BUILD_SCAN_DATA" | jq empty 2>/dev/null; then
197+
# Extract test seed from gradle attributes
198+
TESTS_SEED=$(printf '%s\n' "$BUILD_SCAN_DATA" | jq -r '.models.gradleAttributes.model.values[]? | select(.name == "tests.seed") | .value' 2>/dev/null)
199+
200+
if [[ -z "$TESTS_SEED" ]] || [[ "$TESTS_SEED" == "null" ]]; then
201+
echo "Could not retrieve test seed from build scan"
202+
echo "Debug: Checking available gradle attributes..."
203+
printf '%s\n' "$BUILD_SCAN_DATA" | jq -r '.models.gradleAttributes.model.values[]? | .name' 2>/dev/null || echo "No gradle attributes found"
204+
TESTS_SEED=""
205+
else
206+
echo "Retrieved test seed: $TESTS_SEED"
207+
export TESTS_SEED
208+
fi
209+
else
210+
echo "Error: Invalid JSON response from Develocity API"
211+
echo "Response preview: ${BUILD_SCAN_DATA:0:200}"
212+
TESTS_SEED=""
213+
fi
214+
else
215+
echo "Error: Failed to fetch build scan data from Develocity API"
216+
echo "Curl output: ${BUILD_SCAN_DATA:0:200}"
217+
TESTS_SEED=""
218+
fi
219+
fi
220+
174221
# Add random delay to prevent API rate limiting from parallel retries
175222
sleep $((RANDOM % 5))
176223

@@ -180,7 +227,7 @@ if [[ "${SMART_RETRIES:-}" == "true" && "${BUILDKITE_RETRY_COUNT:-0}" -gt 0 ]];
180227
--max-time 30 \
181228
--header 'accept: application/json' \
182229
--header "authorization: Bearer $DEVELOCITY_API_ACCESS_KEY" \
183-
--header 'content-type: application/json' 2>/dev/null | jq '.' &> .failed-test-history.json; then
230+
--header 'content-type: application/json' 2>/dev/null | jq --arg testseed "$TESTS_SEED" '. + {testseed: $testseed}' &> .failed-test-history.json; then
184231

185232
# Set secure file permissions
186233
chmod 600 .failed-test-history.json
@@ -196,7 +243,7 @@ if [[ "${SMART_RETRIES:-}" == "true" && "${BUILDKITE_RETRY_COUNT:-0}" -gt 0 ]];
196243
ORIGIN_JOB_NAME="previous attempt"
197244
fi
198245

199-
echo "Smart retry enabled: filtering to $FILTERED_WORK_UNITS work units"
246+
echo "Smart retry enabled: filtering to $FILTERED_WORK_UNITS work units"
200247

201248
# Create Buildkite annotation for visibility
202249
# Use unique context per job to support multiple retries

.buildkite/hooks/pre-command.bat

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,70 @@ if "%SMART_RETRIES%"=="true" (
6767
if not defined DEVELOCITY_BASE_URL set DEVELOCITY_BASE_URL=https://gradle-enterprise.elastic.co
6868
set DEVELOCITY_FAILED_TEST_API_URL=!DEVELOCITY_BASE_URL!/api/tests/build/!BUILD_SCAN_ID!?testOutcomes=failed
6969

70+
REM Fetch test seed from build scan custom values
71+
REM Support both DEVELOCITY_API_KEY and DEVELOCITY_API_ACCESS_KEY
72+
set API_KEY=
73+
if defined DEVELOCITY_API_KEY (
74+
set API_KEY=%DEVELOCITY_API_KEY%
75+
) else if defined DEVELOCITY_API_ACCESS_KEY (
76+
set API_KEY=%DEVELOCITY_API_ACCESS_KEY%
77+
)
78+
79+
if not defined API_KEY (
80+
echo Warning: No Develocity API key available ^(DEVELOCITY_API_KEY or DEVELOCITY_API_ACCESS_KEY^)
81+
echo Test seed retrieval will be skipped
82+
set TESTS_SEED=
83+
) else (
84+
set DEVELOCITY_BUILD_SCAN_API_URL=!DEVELOCITY_BASE_URL!/api/builds/!BUILD_SCAN_ID!?models=gradle-attributes
85+
set TESTS_SEED=
86+
87+
echo Fetching test seed from build scan: !BUILD_SCAN_ID!
88+
echo API URL: !DEVELOCITY_BUILD_SCAN_API_URL!
89+
90+
REM Fetch build scan data
91+
curl --silent --show-error --compressed --request GET --url "!DEVELOCITY_BUILD_SCAN_API_URL!" --max-time 30 --header "accept: application/json" --header "authorization: Bearer !API_KEY!" --header "content-type: application/json" 2>nul | jq "." > .build-scan-data.json 2>nul
92+
93+
if exist .build-scan-data.json (
94+
REM Validate JSON
95+
jq empty .build-scan-data.json 2>nul
96+
if !errorlevel! equ 0 (
97+
REM Extract test seed from gradle attributes
98+
for /f "delims=" %%i in ('jq -r ".models.gradleAttributes.model.values[]? | select(.name == \"tests.seed\") | .value" .build-scan-data.json 2^>nul') do set TESTS_SEED=%%i
99+
100+
if defined TESTS_SEED (
101+
if not "!TESTS_SEED!"=="null" (
102+
echo Retrieved test seed: !TESTS_SEED!
103+
) else (
104+
echo Could not retrieve test seed from build scan
105+
echo Debug: Checking available gradle attributes...
106+
jq -r ".models.gradleAttributes.model.values[]? | .name" .build-scan-data.json 2>nul
107+
set TESTS_SEED=
108+
)
109+
) else (
110+
echo Could not retrieve test seed from build scan
111+
echo Debug: Checking available gradle attributes...
112+
jq -r ".models.gradleAttributes.model.values[]? | .name" .build-scan-data.json 2>nul
113+
set TESTS_SEED=
114+
)
115+
) else (
116+
echo Error: Invalid JSON response from Develocity API
117+
type .build-scan-data.json 2>nul | findstr /C:"^" | more +0 +10
118+
set TESTS_SEED=
119+
)
120+
121+
del .build-scan-data.json 2>nul
122+
) else (
123+
echo Error: Failed to fetch build scan data from Develocity API
124+
set TESTS_SEED=
125+
)
126+
)
127+
70128
REM Add random delay to prevent API rate limiting (0-4 seconds)
71129
set /a "delay=%RANDOM% %% 5"
72130
timeout /t !delay! /nobreak >nul 2>&1
73131

74132
REM Fetch failed tests from Develocity API (curl will auto-decompress gzip with --compressed)
75-
curl --compressed --request GET --url "!DEVELOCITY_FAILED_TEST_API_URL!" --max-filesize 10485760 --max-time 30 --header "accept: application/json" --header "authorization: Bearer %DEVELOCITY_API_ACCESS_KEY%" --header "content-type: application/json" 2>nul | jq "." > .failed-test-history.json 2>nul
133+
curl --compressed --request GET --url "!DEVELOCITY_FAILED_TEST_API_URL!" --max-filesize 10485760 --max-time 30 --header "accept: application/json" --header "authorization: Bearer %DEVELOCITY_API_ACCESS_KEY%" --header "content-type: application/json" 2>nul | jq --arg testseed "!TESTS_SEED!" ". + {testseed: $testseed}" > .failed-test-history.json 2>nul
76134

77135
if exist .failed-test-history.json (
78136
REM Set restrictive file permissions (owner only)
@@ -90,7 +148,7 @@ if "%SMART_RETRIES%"=="true" (
90148
if not defined ORIGIN_JOB_NAME set ORIGIN_JOB_NAME=previous attempt
91149
if "!ORIGIN_JOB_NAME!"=="null" set ORIGIN_JOB_NAME=previous attempt
92150

93-
echo Smart retry enabled: filtering to !FILTERED_WORK_UNITS! work units
151+
echo Smart retry enabled: filtering to !FILTERED_WORK_UNITS! work units
94152

95153
REM Create Buildkite annotation for visibility
96154
echo Rerunning failed build job [!ORIGIN_JOB_NAME!]^(!BUILD_SCAN_URL!^) > .smart-retry-annotation.txt
@@ -173,10 +231,11 @@ set "_DEVELOCITY_API_ACCESS_KEY=%DEVELOCITY_API_ACCESS_KEY%"
173231
set "_BUILDKITE_API_TOKEN=%BUILDKITE_API_TOKEN%"
174232
set "_JAVA_HOME=%JAVA_HOME%"
175233
set "_JAVA16_HOME=%JAVA16_HOME%"
234+
set "_TESTS_SEED=%TESTS_SEED%"
176235

177236
REM End local scope and restore critical variables to parent environment
178237
REM This ensures bash scripts can access WORKSPACE, GRADLEW, and other variables
179-
ENDLOCAL && set "WORKSPACE=%_WORKSPACE%" && set "GRADLEW=%_GRADLEW%" && set "GRADLEW_BAT=%_GRADLEW_BAT%" && set "BUILD_NUMBER=%_BUILD_NUMBER%" && set "JOB_BRANCH=%_JOB_BRANCH%" && set "GH_TOKEN=%_GH_TOKEN%" && set "GRADLE_BUILD_CACHE_USERNAME=%_GRADLE_BUILD_CACHE_USERNAME%" && set "GRADLE_BUILD_CACHE_PASSWORD=%_GRADLE_BUILD_CACHE_PASSWORD%" && set "DEVELOCITY_ACCESS_KEY=%_DEVELOCITY_ACCESS_KEY%" && set "DEVELOCITY_API_ACCESS_KEY=%_DEVELOCITY_API_ACCESS_KEY%" && set "BUILDKITE_API_TOKEN=%_BUILDKITE_API_TOKEN%" && set "JAVA_HOME=%_JAVA_HOME%" && set "JAVA16_HOME=%_JAVA16_HOME%"
238+
ENDLOCAL && set "WORKSPACE=%_WORKSPACE%" && set "GRADLEW=%_GRADLEW%" && set "GRADLEW_BAT=%_GRADLEW_BAT%" && set "BUILD_NUMBER=%_BUILD_NUMBER%" && set "JOB_BRANCH=%_JOB_BRANCH%" && set "GH_TOKEN=%_GH_TOKEN%" && set "GRADLE_BUILD_CACHE_USERNAME=%_GRADLE_BUILD_CACHE_USERNAME%" && set "GRADLE_BUILD_CACHE_PASSWORD=%_GRADLE_BUILD_CACHE_PASSWORD%" && set "DEVELOCITY_ACCESS_KEY=%_DEVELOCITY_ACCESS_KEY%" && set "DEVELOCITY_API_ACCESS_KEY=%_DEVELOCITY_API_ACCESS_KEY%" && set "BUILDKITE_API_TOKEN=%_BUILDKITE_API_TOKEN%" && set "JAVA_HOME=%_JAVA_HOME%" && set "JAVA16_HOME=%_JAVA16_HOME%" && set "TESTS_SEED=%_TESTS_SEED%"
180239

181240
bash.exe -c "bash .buildkite/scripts/get-latest-test-mutes.sh"
182241

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ steps:
6565
timeout_in_minutes: 300
6666
matrix:
6767
setup:
68-
BWC_VERSION: ["8.19.11", "9.1.11", "9.2.5", "9.3.0", "9.4.0"]
68+
BWC_VERSION: ["8.19.12", "9.2.6", "9.4.0"]
6969
agents:
7070
provider: gcp
7171
image: family/elasticsearch-ubuntu-2404

.buildkite/pipelines/periodic-java-ea.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,8 @@ steps:
366366
- signal_reason: agent_stop
367367
limit: 3
368368

369-
- label: 8.19.11 / bwc
370-
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v8.19.11#bwcTest
369+
- label: 8.19.12 / bwc
370+
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v8.19.12#bwcTest
371371
timeout_in_minutes: 300
372372
agents:
373373
provider: gcp
@@ -376,7 +376,7 @@ steps:
376376
buildDirectory: /dev/shm/bk
377377
preemptible: true
378378
env:
379-
BWC_VERSION: 8.19.11
379+
BWC_VERSION: 8.19.12
380380
retry:
381381
automatic:
382382
- exit_status: "-1"
@@ -404,8 +404,8 @@ steps:
404404
- signal_reason: agent_stop
405405
limit: 3
406406

407-
- label: 9.1.11 / bwc
408-
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v9.1.11#bwcTest
407+
- label: 9.1.10 / bwc
408+
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v9.1.10#bwcTest
409409
timeout_in_minutes: 300
410410
agents:
411411
provider: gcp
@@ -414,7 +414,7 @@ steps:
414414
buildDirectory: /dev/shm/bk
415415
preemptible: true
416416
env:
417-
BWC_VERSION: 9.1.11
417+
BWC_VERSION: 9.1.10
418418
retry:
419419
automatic:
420420
- exit_status: "-1"
@@ -423,8 +423,8 @@ steps:
423423
- signal_reason: agent_stop
424424
limit: 3
425425

426-
- label: 9.2.5 / bwc
427-
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v9.2.5#bwcTest
426+
- label: 9.2.6 / bwc
427+
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v9.2.6#bwcTest
428428
timeout_in_minutes: 300
429429
agents:
430430
provider: gcp
@@ -433,7 +433,7 @@ steps:
433433
buildDirectory: /dev/shm/bk
434434
preemptible: true
435435
env:
436-
BWC_VERSION: 9.2.5
436+
BWC_VERSION: 9.2.6
437437
retry:
438438
automatic:
439439
- exit_status: "-1"
@@ -557,7 +557,7 @@ steps:
557557
timeout_in_minutes: 300
558558
matrix:
559559
setup:
560-
BWC_VERSION: ["8.19.11", "9.1.11", "9.2.5", "9.3.0", "9.4.0"]
560+
BWC_VERSION: ["8.19.12", "9.2.6", "9.4.0"]
561561
agents:
562562
provider: gcp
563563
image: family/elasticsearch-ubuntu-2404

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,8 @@ steps:
336336
env:
337337
BWC_VERSION: 8.18.8
338338

339-
- label: "{{matrix.image}} / 8.19.11 / packaging-tests-upgrade"
340-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.19.11
339+
- label: "{{matrix.image}} / 8.19.12 / packaging-tests-upgrade"
340+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.19.12
341341
timeout_in_minutes: 300
342342
matrix:
343343
setup:
@@ -350,7 +350,7 @@ steps:
350350
machineType: custom-16-32768
351351
buildDirectory: /dev/shm/bk
352352
env:
353-
BWC_VERSION: 8.19.11
353+
BWC_VERSION: 8.19.12
354354

355355
- label: "{{matrix.image}} / 9.0.8 / packaging-tests-upgrade"
356356
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.8
@@ -368,8 +368,8 @@ steps:
368368
env:
369369
BWC_VERSION: 9.0.8
370370

371-
- label: "{{matrix.image}} / 9.1.11 / packaging-tests-upgrade"
372-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.1.11
371+
- label: "{{matrix.image}} / 9.1.10 / packaging-tests-upgrade"
372+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.1.10
373373
timeout_in_minutes: 300
374374
matrix:
375375
setup:
@@ -382,10 +382,10 @@ steps:
382382
machineType: custom-16-32768
383383
buildDirectory: /dev/shm/bk
384384
env:
385-
BWC_VERSION: 9.1.11
385+
BWC_VERSION: 9.1.10
386386

387-
- label: "{{matrix.image}} / 9.2.5 / packaging-tests-upgrade"
388-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.2.5
387+
- label: "{{matrix.image}} / 9.2.6 / packaging-tests-upgrade"
388+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.2.6
389389
timeout_in_minutes: 300
390390
matrix:
391391
setup:
@@ -398,7 +398,7 @@ steps:
398398
machineType: custom-16-32768
399399
buildDirectory: /dev/shm/bk
400400
env:
401-
BWC_VERSION: 9.2.5
401+
BWC_VERSION: 9.2.6
402402

403403
- label: "{{matrix.image}} / 9.3.0 / packaging-tests-upgrade"
404404
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.3.0

.buildkite/pipelines/periodic.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ steps:
415415
- exit_status: "1"
416416
limit: 1
417417

418-
- label: 8.19.11 / bwc
419-
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v8.19.11#bwcTest
418+
- label: 8.19.12 / bwc
419+
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v8.19.12#bwcTest
420420
timeout_in_minutes: 300
421421
agents:
422422
provider: gcp
@@ -425,7 +425,7 @@ steps:
425425
buildDirectory: /dev/shm/bk
426426
preemptible: true
427427
env:
428-
BWC_VERSION: 8.19.11
428+
BWC_VERSION: 8.19.12
429429
retry:
430430
automatic:
431431
- exit_status: "-1"
@@ -457,8 +457,8 @@ steps:
457457
- exit_status: "1"
458458
limit: 1
459459

460-
- label: 9.1.11 / bwc
461-
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v9.1.11#bwcTest
460+
- label: 9.1.10 / bwc
461+
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v9.1.10#bwcTest
462462
timeout_in_minutes: 300
463463
agents:
464464
provider: gcp
@@ -467,7 +467,7 @@ steps:
467467
buildDirectory: /dev/shm/bk
468468
preemptible: true
469469
env:
470-
BWC_VERSION: 9.1.11
470+
BWC_VERSION: 9.1.10
471471
retry:
472472
automatic:
473473
- exit_status: "-1"
@@ -478,8 +478,8 @@ steps:
478478
- exit_status: "1"
479479
limit: 1
480480

481-
- label: 9.2.5 / bwc
482-
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v9.2.5#bwcTest
481+
- label: 9.2.6 / bwc
482+
command: .ci/scripts/run-gradle.sh --continue -Dbwc.checkout.align=true v9.2.6#bwcTest
483483
timeout_in_minutes: 300
484484
agents:
485485
provider: gcp
@@ -488,7 +488,7 @@ steps:
488488
buildDirectory: /dev/shm/bk
489489
preemptible: true
490490
env:
491-
BWC_VERSION: 9.2.5
491+
BWC_VERSION: 9.2.6
492492
retry:
493493
automatic:
494494
- exit_status: "-1"
@@ -625,7 +625,7 @@ steps:
625625
setup:
626626
ES_RUNTIME_JAVA:
627627
- openjdk21
628-
BWC_VERSION: ["8.19.11", "9.1.11", "9.2.5", "9.3.0", "9.4.0"]
628+
BWC_VERSION: ["8.19.12", "9.2.6", "9.4.0"]
629629
agents:
630630
provider: gcp
631631
image: family/elasticsearch-ubuntu-2404
@@ -692,7 +692,7 @@ steps:
692692
setup:
693693
ES_RUNTIME_JAVA:
694694
- openjdk21
695-
BWC_VERSION: ["8.19.11", "9.1.11", "9.2.5", "9.3.0", "9.4.0"]
695+
BWC_VERSION: ["8.19.12", "9.2.6", "9.4.0"]
696696
agents:
697697
provider: gcp
698698
image: family/elasticsearch-ubuntu-2404
@@ -749,7 +749,7 @@ steps:
749749
ES_RUNTIME_JAVA:
750750
- openjdk21
751751
- openjdk25
752-
BWC_VERSION: ["8.19.11", "9.1.11", "9.2.5", "9.3.0", "9.4.0"]
752+
BWC_VERSION: ["8.19.12", "9.2.6", "9.4.0"]
753753
agents:
754754
provider: gcp
755755
image: family/elasticsearch-ubuntu-2404

0 commit comments

Comments
 (0)