From 0b7b88ca269dbc2919e68bff4850592663db011f Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Fri, 12 Jul 2024 08:38:10 +0200 Subject: [PATCH] Disable Windows CI jobs They fail with: ``` D:/a/colorls/colorls/vendor/bundle/ruby/3.0.0/gems/hpricot-0.8.6/ext/fast_xs make.exe DESTDIR\= generating fast_xs-x64-mingw32.def compiling fast_xs.c fast_xs.c: In function 'fast_xs': fast_xs.c:165:46: error: passing argument 3 of 'rb_rescue' from incompatible pointer type [-Wincompatible-pointer-types] 165 | array = rb_rescue(unpack_utf8, self, unpack_uchar, self); | ^~~~~~~~~~~~ | | | VALUE (*)(VALUE) {aka long long unsigned int (*)(long long unsigned int)} ``` --- .github/workflows/ruby.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index c59c214..a6f0014 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -22,7 +22,11 @@ jobs: strategy: matrix: ruby-version: ['2.6', '2.7', '3.0', '3.1'] - os: [ubuntu-latest, macos-latest, windows-latest] + os: + - ubuntu-latest + - macos-latest + # FIXME: builds on Windows are broken because of hpricot + # - windows-latest steps: - uses: actions/checkout@v2