Suspend JRuby CI matrix #270
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- head | |
- '3.4' | |
- '3.3' | |
- '3.2' | |
- '3.1' | |
- '3.0' | |
- '2.7' | |
- '2.6' | |
# FIXME: When the JRuby issue https://github.com/jruby/jruby/issues/8606 is resolved, | |
# please replace it with the following: | |
# ruby-version: 'jruby-head' # Latest stable JRuby version | |
- 'jruby-9.4.9.0' # The latest JRuby version that passes CI | |
continue-on-error: ${{ matrix.ruby == 'head' || matrix.ruby == 'jruby-head' }} | |
name: Ruby ${{ matrix.ruby }} | |
env: | |
JRUBY_OPTS: "--debug" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Apt Packages | |
run: | | |
sudo apt update | |
sudo apt-get install libcurl4-openssl-dev -y | |
- uses: ruby/setup-ruby@v1 | |
continue-on-error: false | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
rubygems: 'latest' | |
bundler: 'latest' | |
- run: | | |
bundle exec rake |