Skip to content

Make ruby-core job use a non moving target #9599

Make ruby-core job use a non moving target

Make ruby-core job use a non moving target #9599

name: truffleruby-bundler
on:
pull_request:
push:
branches:
- master
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
defaults:
run:
shell: bash
jobs:
truffleruby_bundler:
name: Bundler (Truffleruby)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup ruby
uses: ruby/setup-ruby@28c4deda893d5a96a6b2d958c5b47fc18d65c9d3 # v1.213.0
with:
ruby-version: truffleruby-24.1.1
bundler: none
- name: Prepare dependencies
run: |
bin/rake spec:parallel_deps
- name: Run Test
run: |
bin/parallel_rspec --tag truffleruby_only --tag truffleruby
working-directory: ./bundler
timeout-minutes: 20