From 5766db422b1548ed2a33a55d7df654df4ec53b09 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Wed, 27 Dec 2023 13:10:32 +0000 Subject: [PATCH] [CI] Adds Ruby 3.3 to test matrices --- .buildkite/pipeline.yml | 11 ++++++++--- .github/workflows/main.yml | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 6c397fdb7d..d742c3a666 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -14,6 +14,7 @@ steps: - "free" - "platinum" ruby: + - "3.3" - "3.2" - "3.1" - "3.0" @@ -24,6 +25,10 @@ steps: # Only run platinum once for the latest Ruby. You can use lots of combinations, check the # documentation on https://buildkite.com/docs/pipelines/build-matrix for more information. adjustments: + - with: + suite: "platinum" + ruby: "3.2" + skip: true - with: suite: "platinum" ruby: "3.1" @@ -34,17 +39,17 @@ steps: skip: true - with: suite: "free" - ruby: "3.2" + ruby: "3.3" ruby_source: "ruby" transport: "8.0" - with: suite: "free" - ruby: "3.2" + ruby: "3.3" ruby_source: "ruby" transport: "8.1" - with: suite: "free" - ruby: "3.2" + ruby: "3.3" ruby_source: "ruby" transport: "main" - with: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 469237e8c5..e402e88ded 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ '3.0', '3.1', '3.2', 'jruby-9.3', 'jruby-9.4' ] + ruby: [ '3.0', '3.1', '3.2', '3.3', 'jruby-9.3', 'jruby-9.4' ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3