Skip to content

Commit cd847bc

Browse files
committed
ci: try to reproduce the musl issue from #200
1 parent 8dc39c5 commit cd847bc

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/gem-install.yml

+15
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,21 @@ jobs:
6464
- run: "gem install pkg/tailwindcss-rails-*.gem"
6565
- run: "tailwindcss --help"
6666

67+
linux-musl-install:
68+
needs: ["package"]
69+
runs-on: ubuntu-latest
70+
container:
71+
image: ruby:3.0-alpine
72+
steps:
73+
- uses: actions/download-artifact@v2
74+
with:
75+
name: gem-x86_64-linux
76+
path: pkg
77+
- run: "gem update --system"
78+
- run: "apk add build-base" # TODO: remove after https://github.com/rubygems/rubygems/issues/5914 is in a rubygems release
79+
- run: "gem install pkg/tailwindcss-rails-*.gem"
80+
- run: "tailwindcss --help"
81+
6782
darwin-install:
6883
needs: ["package"]
6984
runs-on: macos-latest

0 commit comments

Comments
 (0)