From deef8cbfd69856f9a631a085bc0cd032ea852767 Mon Sep 17 00:00:00 2001 From: Nicolas Boichat Date: Tue, 29 Apr 2025 21:47:50 +0800 Subject: [PATCH] CICD: Disable windows-latest/x86_64-pc-windows-gnu for now rust-orig current release is broken with GCC 15.1, and I don't think it's possible to pin to an older github image, or an older msys2 gcc... Fixed upstream: https://github.com/rust-onig/rust-onig/issues/191 But waiting for new release: https://github.com/rust-onig/rust-onig/issues/193 --- .github/workflows/CICD.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index df1fba73c..e35abb637 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -527,7 +527,8 @@ jobs: - { os: macos-latest , target: aarch64-apple-darwin , features: feat_os_macos, workspace-tests: true } # M1 CPU - { os: macos-13 , target: x86_64-apple-darwin , features: feat_os_macos, workspace-tests: true } - { os: windows-latest , target: i686-pc-windows-msvc , features: feat_os_windows } - - { os: windows-latest , target: x86_64-pc-windows-gnu , features: feat_os_windows } + # TODO: Re-enable after rust-onig release: https://github.com/rust-onig/rust-onig/issues/193 + # - { os: windows-latest , target: x86_64-pc-windows-gnu , features: feat_os_windows } - { os: windows-latest , target: x86_64-pc-windows-msvc , features: feat_os_windows } - { os: windows-latest , target: aarch64-pc-windows-msvc , features: feat_os_windows, use-cross: use-cross , skip-tests: true } steps: