CI: Configure JRuby: use javac --release, JRUBY_OPTS=--debug, use Java 21 #206
Workflow file for this run
This file contains hidden or 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: test | |
| on: [push, pull_request] | |
| jobs: | |
| ruby-versions: | |
| uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
| with: | |
| min_version: 2.5 | |
| test: | |
| needs: ruby-versions | |
| env: | |
| JRUBY_OPTS: '--debug' | |
| name: build (${{ matrix.ruby }} / ${{ matrix.os }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| exclude: | |
| - { os: macos-latest, ruby: 2.5 } | |
| - { os: windows-latest, ruby: head } | |
| - { os: macos-latest, ruby: jruby } | |
| - { os: windows-latest, ruby: jruby } | |
| - { os: macos-latest, ruby: jruby-head } | |
| - { os: windows-latest, ruby: jruby-head } | |
| - { os: windows-latest, ruby: truffleruby } | |
| - { os: windows-latest, ruby: truffleruby-head } | |
| include: | |
| - { os: windows-latest, ruby: mingw } | |
| - { os: windows-latest, ruby: mswin } | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: set up java 21 | |
| if: ${{ matrix.ruby == 'jruby-head' || matrix.ruby == 'truffleruby' || matrix.ruby == 'truffleruby-head' }} | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: remove default java except 21 | |
| if: ${{ matrix.ruby == 'jruby-head' }} | |
| run: sudo apt remove temurin-8-jdk temurin-11-jdk temurin-17-jdk | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Build | |
| run: rake compile | |
| - name: Run test | |
| run: bundle exec rake test |