Skip to content

Commit

Permalink
ci: pin alpine to 3.18 or earlier
Browse files Browse the repository at this point in the history
because 3.19 fails due to #434. While I work on better musl support,
this makes CI a bit more meaningful.
  • Loading branch information
flavorjones committed Dec 19, 2023
1 parent e8dde86 commit 648b260
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gem-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,14 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3-rc"]
include:
- { ruby: "3.0", flavor: "alpine" }
- { ruby: "3.1", flavor: "alpine3.18" }
- { ruby: "3.2", flavor: "alpine3.18" }
- { ruby: "3.3-rc", flavor: "alpine3.18" }
runs-on: ubuntu-latest
container:
image: ruby:${{matrix.ruby}}-alpine
image: ruby:${{matrix.ruby}}-${{matrix.flavor}}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 648b260

Please sign in to comment.