Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add stable image
  • Loading branch information
sarahchen6 committed Jun 25, 2025
commit 18286ff1bc53f0f4356e0ad79ddd1d29eecb012e
7 changes: 4 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ variables:
GRADLE_PLUGIN_PROXY: "http://artifactual.artifactual.all-clusters.local-dc.fabric.dog:8081/repository/gradle-plugin-portal-proxy/"
BUILDER_IMAGE_VERSION_PREFIX: "v25.06-" # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. "v25.05-")
REPO_NOTIFICATION_CHANNEL: "#apm-java-escalations"
DEFAULT_TEST_JVMS: /^(8|11|17|21)$/
DEFAULT_TEST_JVMS: /^(8|11|17|21|stable)$/
Comment thread
AlexeyKuznetsov-DD marked this conversation as resolved.
Outdated
PROFILE_TESTS:
description: "Enable profiling of tests"
value: "false"
Expand Down Expand Up @@ -63,6 +63,7 @@ workflow:
- "11"
- "17"
- "21"
- "stable"
- "semeru11"
- "oracle8"
- "zulu8"
Expand Down Expand Up @@ -560,7 +561,7 @@ test_inst_latest:
CACHE_TYPE: "latestDep"
parallel:
matrix:
- testJvm: ["8", "17", "21" ]
- testJvm: ["8", "17", "21", "stable"]
# Gitlab doesn't support "parallel" and "parallel:matrix" at the same time
# This emulates "parallel" by including it in the matrix
CI_SPLIT: [ "1/6", "2/6", "3/6", "4/6", "5/6", "6/6"]
Expand Down Expand Up @@ -612,7 +613,7 @@ test_debugger:
variables:
GRADLE_TARGET: ":debuggerTest"
CACHE_TYPE: "base"
DEFAULT_TEST_JVMS: /^(8|11|17|21|semeru8)$/
DEFAULT_TEST_JVMS: /^(8|11|17|21|stable|semeru8)$/
parallel:
matrix: *test_matrix

Expand Down