v5.3.1 #399
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: | |
| schedule: | |
| - cron: '15 11 * * 0' | |
| workflow_dispatch: | |
| env: | |
| JAVA_OPTS: '-Xms60M -Xmx1G' | |
| jobs: | |
| ruby-versions: | |
| uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
| with: | |
| engine: cruby | |
| min_version: 2.5 | |
| test: | |
| needs: ruby-versions | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| include: | |
| # jruby-10.0.2.0 does not support Data instances with ivars | |
| - { os: windows-latest, ruby: jruby-head } | |
| - { os: macos-latest, ruby: jruby-head } | |
| - { os: ubuntu-latest, ruby: jruby-head } | |
| # Needs truffleruby-head for (base) Data#initialize (which truffleruby 25.0 does not have) | |
| - { os: ubuntu-latest, ruby: truffleruby-head } | |
| - { os: macos-latest, ruby: truffleruby-head } | |
| - { os: windows-latest, ruby: ucrt } | |
| - { os: windows-latest, ruby: mingw } | |
| - { os: windows-latest, ruby: mswin } | |
| - { os: macos-15-intel, ruby: 2.5 } | |
| exclude: | |
| # CRuby < 2.6 does not support macos-arm64 | |
| - { os: macos-latest, ruby: 2.5 } | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby-pkgs@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| apt-get: "haveged libyaml-dev" | |
| brew: libyaml | |
| vcpkg: libyaml | |
| - name: Set JRuby ENV vars | |
| run: | | |
| echo 'JAVA_OPTS=-Xmx1g' >> $GITHUB_ENV | |
| if: ${{ ! startsWith(matrix.ruby, 'jruby') }} | |
| - name: Install dependencies | |
| run: bundle install --jobs 1 | |
| - name: Run test | |
| id: test | |
| run: rake | |
| - name: Install gem | |
| run: rake install | |
| if: ${{ steps.test.outcome == 'success' }} | |
| test-ibm: | |
| if: github.repository == 'ruby/psych' | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04-ppc64le | |
| - os: ubuntu-24.04-s390x | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - name: Set up Ruby | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install ruby-full bundler libyaml-dev | |
| - name: Install dependencies | |
| run: sudo bundle install --jobs $(nproc) | |
| - name: Run test | |
| id: test | |
| run: rake | |
| - name: Install gem | |
| run: sudo rake install | |
| if: ${{ steps.test.outcome == 'success' }} |