Skip to content

Commit

Permalink
✅ Split CI matrix.gemfile into resque and redis
Browse files Browse the repository at this point in the history
  • Loading branch information
nevans committed May 16, 2024
1 parent 4762cfa commit 90675f9
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,42 @@ on: [push, workflow_dispatch]
jobs:
build:
name: >-
${{ matrix.os }} ${{ matrix.ruby }} ${{ matrix.gemfile }}
${{ matrix.os }} ruby ${{ matrix.ruby }}, resque ${{ matrix.resque }}, redis gem ${{ matrix.redis }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04 ]
ruby: [ "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3" ]
gemfile:
- resque_1.22_redis_2.0
- resque_1.23_redis_3.0
- resque_1.24_redis_3.0
- resque_1.25_redis_3.0
- resque_1.27_redis_3.3
- resque_2.0_redis_4.0
- resque_2.1_redis_4.4
- resque_2.2_redis_4.6
- resque_2.3_redis_4.7
- resque_2.4_redis_4.8
- resque_2.5_redis_5.0
- resque_2.6_redis_5.2
resque: [ "1.22", "1.23", "1.24", "1.25", "1.26", "1.27",
"2.0", "2.1", "2.3", "2.4", "2.5", "2.6" ]
include:
- os: ubuntu-20.04
ruby: "3.3"
gemfile: resque_2.6_redis_5.2
resque: "2.6"
redis: "5.2"

- { resque: "1.22", redis: "2.0" }
- { resque: "1.23", redis: "3.0" }
- { resque: "1.24", redis: "3.0" }
- { resque: "1.25", redis: "3.0" }
- { resque: "1.27", redis: "3.3" }
- { resque: "2.0", redis: "4.0" }
- { resque: "2.1", redis: "4.4" }
- { resque: "2.2", redis: "4.6" }
- { resque: "2.3", redis: "4.7" }
- { resque: "2.4", redis: "4.8" }
- { resque: "2.5", redis: "5.0" }
- { resque: "2.6", redis: "5.2" }


services:
redis:
image: redis

env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/resque_${{ matrix.resque }}_redis_${{ matrix.redis }}.gemfile

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 90675f9

Please sign in to comment.