Skip to content

Commit

Permalink
Move experimental builds to a separate workflow that only runs when p…
Browse files Browse the repository at this point in the history
…ushed to master

Signed-off-by: James Couball <jcouball@yahoo.com>
  • Loading branch information
jcouball committed Mar 30, 2024
1 parent e056d64 commit 705e983
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/continuous_integration.yml
Expand Up @@ -22,20 +22,10 @@ jobs:
operating-system: [ubuntu-latest]
experimental: [No]
include:
- # Building against head version of Ruby is considered experimental
ruby: head
operating-system: ubuntu-latest
experimental: Yes

- # Only test with minimal Ruby version on Windows
ruby: 3.0
operating-system: windows-latest

- # Since JRuby on Windows is known to not work, consider this experimental
ruby: jruby-head
operating-system: windows-latest
experimental: Yes

steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/experimental_continuous_integration.yml
@@ -0,0 +1,43 @@
name: CI Experimental

on:
push:
branches: [master,v1]
workflow_dispatch:

jobs:
build:
name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
continue-on-error: true
env: { JAVA_OPTS: -Djdk.io.File.enableADS=true }

strategy:
fail-fast: false
matrix:
include:
- # Building against head version of Ruby is considered experimental
ruby: head
operating-system: ubuntu-latest
experimental: Yes

- # Since JRuby on Windows is known to not work, consider this experimental
ruby: jruby-head
operating-system: windows-latest
experimental: Yes

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

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Run Build
run: bundle exec rake default

- name: Test Gem
run: bundle exec rake test:gem

0 comments on commit 705e983

Please sign in to comment.