@@ -31,7 +31,7 @@ variables:
3131 GRADLE_PLUGIN_PROXY : " https://depot-read-api-java.us1.ddbuild.io/magicmirror/magicmirror/@current/"
3232 BUILDER_IMAGE_VERSION_PREFIX : " v26.02-" # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. "v25.05-")
3333 REPO_NOTIFICATION_CHANNEL : " #apm-java-escalations"
34- DEFAULT_TEST_JVMS : /^(8|21|ibm8 )$/ # the latest "stable" version is 26
34+ DEFAULT_TEST_JVMS : /^(8|11|17| 21|25|stable )$/ # the latest "stable" version is 26
3535 PROFILE_TESTS :
3636 description : " Enable profiling of tests"
3737 value : " false"
@@ -468,17 +468,17 @@ check_build_src:
468468 variables :
469469 GRADLE_TARGET : " :buildSrc:build"
470470
471- # check_base:
472- # extends: .check_job
473- # variables:
474- # GRADLE_TARGET: ":baseCheck"
475- #
476- # check_inst:
477- # extends: .check_job
478- # parallel: 4
479- # variables:
480- # GRADLE_TARGET: ":instrumentationCheck"
481- # CACHE_TYPE: "inst"
471+ check_base :
472+ extends : .check_job
473+ variables :
474+ GRADLE_TARGET : " :baseCheck"
475+
476+ check_inst :
477+ extends : .check_job
478+ parallel : 4
479+ variables :
480+ GRADLE_TARGET : " :instrumentationCheck"
481+ CACHE_TYPE : " inst"
482482
483483check_smoke :
484484 extends : .check_job
@@ -670,36 +670,36 @@ agent_integration_tests:
670670 DD_HOSTNAME : " local-agent"
671671 DD_API_KEY : " invalid_key_but_this_is_fine"
672672
673- # test_base:
674- # extends: .test_job
675- # variables:
676- # GRADLE_TARGET: ":baseTest"
677- # CACHE_TYPE: "base"
678- # parallel:
679- # matrix: *test_matrix_4
680- # script:
681- # - if [ "$testJvm" == "8" ]; then export GRADLE_PARAMS="-PskipFlakyTests -PcheckCoverage"; fi
682- # - !reference [.test_job, script]
683-
684- # test_inst:
685- # extends: .test_job_with_test_agent
686- # variables:
687- # GRADLE_TARGET: ":instrumentationTest"
688- # CACHE_TYPE: "inst"
689- # parallel:
690- # matrix: *test_matrix_8
691- #
692- # test_inst_latest:
693- # extends: .test_job_with_test_agent
694- # variables:
695- # GRADLE_TARGET: ":instrumentationLatestDepTest"
696- # CACHE_TYPE: "latestdep"
697- # parallel:
698- # matrix:
699- # - testJvm: ["8", "17", "21", "25"] # the latest "stable" version is LTS v25
700- # # Gitlab doesn't support "parallel" and "parallel:matrix" at the same time
701- # # This emulates "parallel" by including it in the matrix
702- # CI_SPLIT: [ "1/6", "2/6", "3/6", "4/6", "5/6", "6/6"]
673+ test_base :
674+ extends : .test_job
675+ variables :
676+ GRADLE_TARGET : " :baseTest"
677+ CACHE_TYPE : " base"
678+ parallel :
679+ matrix : *test_matrix_4
680+ script :
681+ - if [ "$testJvm" == "8" ]; then export GRADLE_PARAMS="-PskipFlakyTests -PcheckCoverage"; fi
682+ - !reference [.test_job, script]
683+
684+ test_inst :
685+ extends : .test_job_with_test_agent
686+ variables :
687+ GRADLE_TARGET : " :instrumentationTest"
688+ CACHE_TYPE : " inst"
689+ parallel :
690+ matrix : *test_matrix_8
691+
692+ test_inst_latest :
693+ extends : .test_job_with_test_agent
694+ variables :
695+ GRADLE_TARGET : " :instrumentationLatestDepTest"
696+ CACHE_TYPE : " latestdep"
697+ parallel :
698+ matrix :
699+ - testJvm : ["8", "17", "21", "25"] # the latest "stable" version is LTS v25
700+ # Gitlab doesn't support "parallel" and "parallel:matrix" at the same time
701+ # This emulates "parallel" by including it in the matrix
702+ CI_SPLIT : [ "1/6", "2/6", "3/6", "4/6", "5/6", "6/6"]
703703
704704test_flaky :
705705 extends : .test_job_with_test_agent
0 commit comments