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)}
```
This commit is contained in:
Claudio Bley 2024-07-12 08:38:10 +02:00
parent 6f7dedc950
commit 0b7b88ca26

View file

@ -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