From de88f23d105033ab155edac3d7d175fa7f092db9 Mon Sep 17 00:00:00 2001 From: nick evans Date: Thu, 16 May 2024 09:18:55 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Exclude=20incompatible=20versions?= =?UTF-8?q?=20from=20CI=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With a little effort, some of these could be made compatible, but... it's really not worth the effort. We'll be dropping support for older versions from the next minor release anyway. --- .github/workflows/ruby.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 4d0be46..10098c2 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -32,6 +32,19 @@ jobs: - { resque: "2.5", redis: "5.0" } - { resque: "2.6", redis: "5.2" } + exclude: + - { redis: "5.0", ruby: "2.4" } # redis 5.0 requires ruby 2.5 + - { redis: "5.2", ruby: "2.4" } # redis 5.2 requires ruby 2.6 + - { redis: "5.2", ruby: "2.5" } # redis 5.2 requires ruby 2.6 + + # ironically, resque 1.22 seems to be compatible with ruby 3+ + - { resque: "1.23", ruby: "3.0" } # incompatible with ruby 3+ + - { resque: "1.24", ruby: "3.1" } # incompatible with ruby 3+ + - { resque: "1.25", ruby: "3.2" } # incompatible with ruby 3+ + + - { resque: "2.1", ruby: "3.0" } # redis-namespace 1.7 requires ruby < 3 + - { resque: "2.1", ruby: "3.1" } # redis-namespace 1.7 requires ruby < 3 + - { resque: "2.1", ruby: "3.2" } # redis-namespace 1.7 requires ruby < 3 services: redis: