Skip to content

Commit

Permalink
ci: try to reproduce the musl issue from #200
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Sep 19, 2022
1 parent 8dc39c5 commit cd847bc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/gem-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,21 @@ jobs:
- run: "gem install pkg/tailwindcss-rails-*.gem"
- run: "tailwindcss --help"

linux-musl-install:
needs: ["package"]
runs-on: ubuntu-latest
container:
image: ruby:3.0-alpine
steps:
- uses: actions/download-artifact@v2
with:
name: gem-x86_64-linux
path: pkg
- run: "gem update --system"
- run: "apk add build-base" # TODO: remove after https://github.com/rubygems/rubygems/issues/5914 is in a rubygems release
- run: "gem install pkg/tailwindcss-rails-*.gem"
- run: "tailwindcss --help"

darwin-install:
needs: ["package"]
runs-on: macos-latest
Expand Down

0 comments on commit cd847bc

Please sign in to comment.