From 8be18df9cbae34091059674d36cae3e72f439cea Mon Sep 17 00:00:00 2001 From: David Harsha Date: Wed, 13 Mar 2024 23:16:50 -0700 Subject: [PATCH] Skip Ruby head on CI (ubuntu and macos) These aren't passing because `mutex_m` is no longer included by default in Ruby's standard library. Need to upgrade `minitest` to get it to work, but can't do that yet because the new version doesn't support Ruby 2.5. Related: https://github.com/davishmcclurg/json_schemer/issues/178 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f89e98..2626191 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,10 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, head, jruby, jruby-head, truffleruby, truffleruby-head] exclude: + - os: ubuntu-latest + ruby: head + - os: macos-latest + ruby: head - os: windows-latest ruby: truffleruby - os: windows-latest