Skip to content

Commit 648b260

Browse files
committed
ci: pin alpine to 3.18 or earlier
because 3.19 fails due to #434. While I work on better musl support, this makes CI a bit more meaningful.
1 parent e8dde86 commit 648b260

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/gem-install.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -324,10 +324,14 @@ jobs:
324324
strategy:
325325
fail-fast: false
326326
matrix:
327-
ruby: ["3.0", "3.1", "3.2", "3.3-rc"]
327+
include:
328+
- { ruby: "3.0", flavor: "alpine" }
329+
- { ruby: "3.1", flavor: "alpine3.18" }
330+
- { ruby: "3.2", flavor: "alpine3.18" }
331+
- { ruby: "3.3-rc", flavor: "alpine3.18" }
328332
runs-on: ubuntu-latest
329333
container:
330-
image: ruby:${{matrix.ruby}}-alpine
334+
image: ruby:${{matrix.ruby}}-${{matrix.flavor}}
331335
steps:
332336
- uses: actions/checkout@v4
333337
- uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)