From 12312e0206206e0843e3ae49fd03ab98275e8ff5 Mon Sep 17 00:00:00 2001 From: Davide D'Alto Date: Thu, 20 Nov 2025 15:27:27 +0100 Subject: [PATCH 1/2] [#2801] Reduce the number of jdk we test with We only need the latest LTSs --- .github/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dacb05ced..f05e08302 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -191,9 +191,7 @@ jobs: # We want to enable preview features when testing newer builds of OpenJDK: # even if we don't use these features, just enabling them can cause side effects # and it's useful to test that. - - { name: "20", java_version_numeric: 20, jvm_args: '--enable-preview' } - { name: "21", java_version_numeric: 21, jvm_args: '--enable-preview' } - - { name: "24", java_version_numeric: 24, jvm_args: '--enable-preview' } - { name: "25", java_version_numeric: 25, from: 'jdk.java.net', jvm_args: '--enable-preview' } - { name: "26-ea", java_version_numeric: 26, from: 'jdk.java.net', jvm_args: '--enable-preview' } steps: From f7720543aa1acbc207549cfc0562bc0771e48251 Mon Sep 17 00:00:00 2001 From: Davide D'Alto Date: Thu, 20 Nov 2025 15:32:33 +0100 Subject: [PATCH 2/2] [#2801] Remove 3.0 and 4.0 from the scheduled builds We don't support them anymore --- .github/workflows/scheduler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduler.yml b/.github/workflows/scheduler.yml index 54103540e..ae678b15d 100644 --- a/.github/workflows/scheduler.yml +++ b/.github/workflows/scheduler.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - branch: [ 'wip/2.4', 'wip/3.0', 'wip/3.1', 'wip/3.2', 'wip/4.0', 'wip/4.1', 'wip/4.2' ] + branch: [ 'wip/2.4', 'wip/3.1', 'wip/3.2', 'wip/4.1', 'wip/4.2' ] uses: ./.github/workflows/build.yml with: branch: ${{ matrix.branch }}