From edb75fd33448c38e68d7b1d8d2991f15e6aeaccd Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 17 Mar 2022 13:34:08 +0100 Subject: [PATCH] Use truffleruby-head until truffleruby 22.1 is released * truffleruby 22.0 does not pass the CI (patch issue). --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 767f727d..20af897e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,8 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, jruby, truffleruby] + # TODO: when truffleruby 22.1 is out, replace truffleruby-head by truffleruby + ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, jruby, truffleruby-head] env: JAVA_OPTS: '-Xmx1024m'