Skip to content

Commit

Permalink
👷 Split heads to separate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Feb 28, 2024
1 parent 06415df commit 6c71528
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/current.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruby Matrix
name: Ruby Current Matrix

env:
K_SOUP_COV_DO: false
Expand Down Expand Up @@ -30,8 +30,6 @@ jobs:
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
CI_CODECOV: true
COVER_ALL: true
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -45,11 +43,8 @@ jobs:
#- '3.1' - 3.1 tests are run by coverage.yml
- '3.2'
- '3.3'
- head
- jruby
- jruby-head
- truffleruby
- truffleruby-head

steps:
- name: Checkout
Expand Down
60 changes: 60 additions & 0 deletions .github/workflows/heads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Ruby Heads Matrix

env:
K_SOUP_COV_DO: false

on:
push:
branches:
- 'main'
tags:
- '!*' # Do not execute on tags
pull_request:
branches:
- '*'
# Allow manually triggering the workflow.
workflow_dispatch:

permissions:
contents: read

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
test:
name: Specs - Ruby ${{ matrix.ruby }} ${{ matrix.name_extra || '' }}
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
runs-on: ubuntu-latest
strategy:
matrix:
rubygems:
- latest
bundler:
- latest
gemfile:
- vanilla
ruby:
- head
- jruby-head
- truffleruby-head

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Ruby & Bundle
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
rubygems: "${{ matrix.rubygems }}"
bundler: "${{ matrix.bundler }}"
bundler-cache: true

- name: Run tests
run: bundle exec rake

0 comments on commit 6c71528

Please sign in to comment.