From 4a6938956bb16716aab2765563e920d35edc2b45 Mon Sep 17 00:00:00 2001 From: Jun Zhang Date: Tue, 10 Dec 2024 21:15:38 +0800 Subject: [PATCH] [project]Only sanity test with JDK 21. (#1952) --- .github/workflows/centos-ci.yml | 2 +- .github/workflows/mac-ci.yml | 2 +- .github/workflows/ubuntu-ci.yml | 2 +- .github/workflows/windows-ci.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/centos-ci.yml b/.github/workflows/centos-ci.yml index c4a78ba8f..c08685695 100644 --- a/.github/workflows/centos-ci.yml +++ b/.github/workflows/centos-ci.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - java-version: [8, 11, 21] # 定义要测试的JDK版本 + java-version: [21] # 定义要测试的JDK版本 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/mac-ci.yml b/.github/workflows/mac-ci.yml index 3d8bb9407..ddc70c392 100644 --- a/.github/workflows/mac-ci.yml +++ b/.github/workflows/mac-ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - java-version: [8, 11, 21] # Define the JDK versions to test + java-version: [21] # Define the JDK versions to test steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/ubuntu-ci.yml b/.github/workflows/ubuntu-ci.yml index d5766b17c..502110659 100644 --- a/.github/workflows/ubuntu-ci.yml +++ b/.github/workflows/ubuntu-ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - java-version: [8, 11, 21] # 定义要测试的JDK版本 + java-version: [21] # 定义要测试的JDK版本 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index 5856dabe7..939983ee8 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - java-version: [8, 11, 21] # Add JDK 21 to the matrix + java-version: [21] # Add JDK 21 to the matrix steps: - uses: actions/checkout@v2