diff --git a/.circleci/config.continue.yml.j2 b/.circleci/config.continue.yml.j2 index 027f914fbec..b9a3351748e 100644 --- a/.circleci/config.continue.yml.j2 +++ b/.circleci/config.continue.yml.j2 @@ -1237,6 +1237,20 @@ build_test_jobs: &build_test_jobs maxWorkers: 3 testJvm: "21" + - xlarge_tests: + requires: + - ok_to_test + - build_latestdep + name: test_24_inst_latest + gradleTarget: ":instrumentationLatestDepTest" + gradleParameters: "-PskipFlakyTests" + triggeredBy: *instrumentation_modules + stage: instrumentation + cacheType: latestdep + parallelism: 12 + maxWorkers: 3 + testJvm: "24" + {% if flaky %} - tests: requires: diff --git a/.circleci/render_config.py b/.circleci/render_config.py index c9a7299148c..d7dffc170c0 100755 --- a/.circleci/render_config.py +++ b/.circleci/render_config.py @@ -15,7 +15,7 @@ GENERATED_CONFIG_PATH = os.path.join(SCRIPT_DIR, OUT_FILENAME) # JDKs that will run on every pipeline. -ALWAYS_ON_JDKS = {"8", "17", "21"} +ALWAYS_ON_JDKS = {"8", "17", "21", "24"} # And these will run only in master and release/ branches. MASTER_ONLY_JDKS = { "11",