From 61d6892e177567f5ab42d57fc1581e5c4944cb68 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 11 Dec 2024 10:14:52 -0500 Subject: [PATCH] wip --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd15be67fd..33d93530c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,13 +92,20 @@ jobs: # # SECTION run the test suite across a broad matrix of rubies, configs, and systems # + ruby_versions: + outputs: + minors: ["3.1", "3.2", "3.3"] + runs-on: ubuntu-latest + steps: + - run: echo "generating rubies ..." + linux: - needs: ["basic"] + needs: ["basic", "ruby_versions"] strategy: fail-fast: false matrix: sys: ["enable", "disable"] - ruby: ["3.1", "3.2", "3.3"] + ruby: ${{ needs.ruby_versions.minors }} runs-on: ubuntu-latest container: image: ghcr.io/sparklemotion/nokogiri-test:mri-${{matrix.ruby}}