File tree Expand file tree Collapse file tree 2 files changed +31
-6
lines changed
Expand file tree Collapse file tree 2 files changed +31
-6
lines changed Original file line number Diff line number Diff line change 1010 ruby-versions :
1111 uses : ruby/actions/.github/workflows/ruby_versions.yml@master
1212 with :
13- engine : cruby-truffleruby
13+ engine : cruby
1414 min_version : 2.7
1515 lint :
1616 runs-on : ubuntu-latest
3030 matrix :
3131 ruby : ${{ fromJson(needs.ruby-versions.outputs.versions) }}
3232 with_latest_reline : [true, false]
33- exclude :
34- - ruby : truffleruby
3533 fail-fast : false
3634 runs-on : ubuntu-latest
3735 env :
8078 matrix :
8179 ruby : ${{ fromJson(needs.ruby-versions.outputs.versions) }}
8280 with_latest_reline : [true, false]
83- exclude :
84- - ruby : truffleruby
85- - ruby : truffleruby-head
8681 fail-fast : false
8782 env :
8883 WITH_LATEST_RELINE : ${{matrix.with_latest_reline}}
Original file line number Diff line number Diff line change 1+ name : build-with-truffleruby-head
2+
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ - cron : " 30 14 * * *"
8+
9+ jobs :
10+ irb :
11+ name : rake test truffleruby-head ${{ matrix.with_latest_reline && '(latest reline)' || '' }}
12+ strategy :
13+ matrix :
14+ with_latest_reline : [true, false]
15+ fail-fast : false
16+ runs-on : ubuntu-latest
17+ env :
18+ WITH_LATEST_RELINE : ${{matrix.with_latest_reline}}
19+ timeout-minutes : 30
20+ steps :
21+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
22+ - name : Set up Ruby
23+ uses : ruby/setup-ruby@v1
24+ with :
25+ ruby-version : truffleruby-head
26+ bundler-cache : true
27+ - name : Run tests
28+ run : bundle exec rake test
29+ - name : Run tests in isolation
30+ run : bundle exec rake test_in_isolation
You can’t perform that action at this time.
0 commit comments