Merge pull request #38 from rubygems/dependabot/bundler/rexml-3.3.6 #95
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: rubygems | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ci-${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
rubygems: | |
name: Rubygems on ${{ matrix.os.name }} (${{ matrix.ruby.name }}) | |
runs-on: ${{ matrix.os.value }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- { name: Ubuntu, value: ubuntu-22.04 } | |
- { name: macOS, value: macos-14 } | |
- { name: Windows, value: windows-2022 } | |
ruby: | |
- { name: "3.0", value: 3.0.7 } | |
- { name: "3.1", value: 3.1.5 } | |
- { name: "3.2", value: 3.2.4 } | |
- { name: "3.3", value: 3.3.3 } | |
include: | |
- ruby: { name: jruby-9.4, value: jruby-9.4.8.0 } | |
os: { name: Ubuntu, value: ubuntu-22.04 } | |
- ruby: { name: truffleruby, value: truffleruby-24.0.1 } | |
os: { name: Ubuntu, value: ubuntu-22.04 } | |
- os: { name: Windows, value: windows-2022 } | |
ruby: { name: mswin, value: mswin } | |
- os: { name: Ubuntu, value: ubuntu-22.04 } | |
ruby: { name: ruby-head, value: ruby-head } | |
- os: { name: Ubuntu, value: ubuntu-22.04 } | |
ruby: { name: truffleruby-head, value: truffleruby-head } | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup ruby (Ubuntu/macOS) | |
uses: ruby/setup-ruby@97e35c5302afcf3f5ac1df3fca9343d32536b286 # v1.184.0 | |
with: | |
ruby-version: ${{ matrix.ruby.value }} | |
bundler-cache: true | |
if: matrix.os.name != 'Windows' | |
- name: Setup ruby (Windows) | |
uses: ruby/setup-ruby-pkgs@1493c009477b19efcb54cfaf72b5f9d1fd6ba86c # v1.33.2 | |
with: | |
ruby-version: ${{ matrix.ruby.value }} | |
bundler-cache: true | |
mingw: clang | |
if: matrix.os.name == 'Windows' | |
- name: Configure bindgen | |
shell: pwsh | |
run: | | |
echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV | |
echo "BINDGEN_EXTRA_CLANG_ARGS=$((gcm clang).source -replace "bin\clang.exe","include")" >> $env:GITHUB_ENV | |
if: matrix.ruby.name == 'mswin' | |
- name: Run Test | |
run: bundle exec rake test | |
if: "!startsWith(matrix.ruby.name, 'truffleruby') && !startsWith(matrix.ruby.name, 'jruby')" | |
- name: Run Test isolatedly | |
run: bundle exec rake test:isolated | |
if: matrix.ruby.name == '3.2' && matrix.os.name != 'Windows' | |
- name: Run Test (JRuby) | |
run: JRUBY_OPTS=--debug bundle exec rake test | |
if: startsWith(matrix.ruby.name, 'jruby') | |
- name: Run Test (Truffleruby) | |
run: TRUFFLERUBYOPT="--experimental-options --testing-rubygems" bundle exec rake test | |
if: startsWith(matrix.ruby.name, 'truffleruby') | |
timeout-minutes: 20 |