We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b60c0e commit db57c96Copy full SHA for db57c96
.github/workflows/ci.yml
@@ -22,24 +22,11 @@ jobs:
22
doc-build-latest:
23
runs-on: ubuntu-latest
24
name: Rails Doc Build (latest)
25
- steps:
26
- - uses: actions/checkout@v4
27
- with:
28
- submodules: true
29
- - name: fetch Rails tags
30
- run: cd rails && git fetch --depth=1 origin refs/tags/v8*:refs/tags/v8*
31
- - uses: ruby/setup-ruby@v1
32
33
- ruby-version: 3.3
34
- bundler-cache: true
35
- - name: Doc Build
36
- run: rake build
37
-
38
- doc-build-latest-with-yjit:
39
- runs-on: ubuntu-latest
40
- name: Rails Doc Build (latest, with YJIT enabled)
+ strategy:
+ matrix:
+ yjit-enabled: [0, 1]
41
env:
42
- RUBY_YJIT_ENABLE: true
+ RUBY_YJIT_ENABLE: ${{ matrix.yjit-enabled }}
43
steps:
44
- uses: actions/checkout@v4
45
with:
0 commit comments