Improve pure Ruby selector compatibility on JRuby #1666
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] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: ${{matrix.ruby}} on ${{matrix.os}} | |
| runs-on: ${{matrix.os}}-latest | |
| continue-on-error: ${{matrix.experimental}} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu | |
| - macos | |
| - windows | |
| ruby: | |
| - "3.3" | |
| - "3.4" | |
| - "4.0" | |
| experimental: [false] | |
| include: | |
| - os: ubuntu | |
| ruby: truffleruby | |
| experimental: true | |
| - os: ubuntu | |
| ruby: jruby | |
| experimental: true | |
| - os: ubuntu | |
| ruby: head | |
| experimental: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{matrix.ruby}} | |
| bundler-cache: true | |
| - name: Install packages (Ubuntu) | |
| if: matrix.os == 'ubuntu' | |
| run: sudo apt-get install -y liburing-dev | |
| - name: Run tests | |
| if: matrix.ruby != 'jruby' | |
| timeout-minutes: 10 | |
| run: bundle exec bake test | |
| - name: Run tests (JRuby) | |
| if: matrix.ruby == 'jruby' | |
| timeout-minutes: 10 | |
| run: | | |
| bundle exec bake before_test | |
| for file in $(find test -name '*.rb' | sort); do | |
| echo "::group::$file" | |
| timeout 60s bundle exec sus --verbose "$file" | |
| echo "::endgroup::" | |
| done |