From 5804e981f892915f07d7c56173a61f24fc30cd3b Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Sat, 18 Jan 2025 15:55:50 -0500 Subject: [PATCH] Fix CI for Ruby 2.5 --- .github/workflows/ruby.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 0e38867..4469e5b 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -20,6 +20,11 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3] + # CRuby < 2.6 does not support macos-arm64, so test those on amd64 instead + exclude: + - { os: macos-latest, ruby: '2.5' } + include: + - { os: macos-13, ruby: '2.5' } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2