Skip to content

Commit decc018

Browse files
authored
build on specific ruby version to ensure they are available (#143)
1 parent 9f6d311 commit decc018

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# https://github.com/oxidize-rb/actions/blob/main/fetch-ci-data/evaluate.rb#L54
2929
exclude: [arm-linux, x64-mingw32, x64-mingw-ucrt, aarch64-linux-musl]
3030
stable-ruby-versions: |
31-
exclude: [head]
31+
only: ['3.2', '3.3', '3.4']
3232
3333
build:
3434
name: Build native gems

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
uses: oxidize-rb/actions/fetch-ci-data@v1
1717
with:
1818
stable-ruby-versions: |
19-
# See https://github.com/bytecodealliance/wasmtime-rb/issues/286
20-
# for details.
21-
exclude: [head]
19+
# Explicitly include all Ruby versions we want to support
20+
# to ensure binaries are built for each version
21+
only: ['3.2', '3.3', '3.4']
2222
rspec:
2323
runs-on: ${{ matrix.os }}
2424
needs: ci-data

0 commit comments

Comments
 (0)