From 7dc18ff0ca6e3630d3f29d2a85ebf6cc27ae9d6c Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Sun, 19 May 2024 23:56:25 +0900 Subject: [PATCH] Exclude ruby 1.9 and 2.2 test for ubuntu-24.04 https://github.com/ruby/setup-ruby/pull/596#discussion_r1606047680 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 326a083b1..10325970b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,8 @@ jobs: exclude: # https://github.com/ruby/setup-ruby/issues/496 - { os: ubuntu-22.04, ruby: '2.2' } - # - { os: ubuntu-24.04, ruby: '2.2' } + - { os: ubuntu-24.04, ruby: '1.9' } + - { os: ubuntu-24.04, ruby: '2.2' } # These old Rubies fail to compile on macos-arm-oss (macOS 13, arm64), which is used for ruby/ruby-builder - { os: macos-14, ruby: '1.9' } - { os: macos-14, ruby: '2.0' }