From 51eb2cbb449c82073b26ff6c14373827bd9e7dfc Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Fri, 27 Dec 2024 10:15:15 +0900 Subject: [PATCH] ci: exclude test case until Ruby 3.4 is installable (#4748) **Which issue(s) this PR fixes**: Fixes # **What this PR does / why we need it**: Ruby 3.4 binary on Windows is not ready yet. Exclude it from matrix until it is available. **Docs Changes**: N/A **Release Note**: N/A Signed-off-by: Kentaro Hayashi --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e355c78bc4..71af8d49d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,9 @@ jobs: matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] ruby-version: ['3.4', '3.3', '3.2', '3.1'] + exclude: + - os: 'windows-latest' + ruby-version: '3.4' name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }} steps: