Skip to content

Commit 815904a

Browse files
committed
ci: drop the linux arm build (because upstream isn't shipping it)
1 parent ce57e42 commit 815904a

File tree

1 file changed

+24
-17
lines changed

1 file changed

+24
-17
lines changed

.github/workflows/gem-install.yml

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
platform: ["ruby", "x64-mingw32", "x64-mingw-ucrt", "x86_64-darwin", "arm64-darwin", "x86_64-linux", "arm-linux"]
22+
platform:
23+
- "ruby"
24+
- "x64-mingw32"
25+
- "x64-mingw-ucrt"
26+
- "x86_64-darwin"
27+
- "arm64-darwin"
28+
- "x86_64-linux"
29+
# - "arm-linux"
2330
runs-on: ubuntu-latest
2431
steps:
2532
- uses: actions/checkout@v4
@@ -79,22 +86,22 @@ jobs:
7986
- run: "gem install pkg/tailwindcss-ruby-*.gem"
8087
- run: "tailwindcss --help"
8188

82-
linux-arm-install:
83-
needs: ["package"]
84-
runs-on: ubuntu-latest
85-
steps:
86-
- uses: actions/download-artifact@v4
87-
with:
88-
name: gem-arm-linux
89-
path: pkg
90-
- run: |
91-
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
92-
docker run --rm -v "$(pwd):/test" -w /test --platform=linux/arm/v7 ruby:3.2 \
93-
/bin/bash -c "
94-
set -ex
95-
gem install pkg/tailwindcss-ruby-*.gem
96-
tailwindcss --help
97-
"
89+
# linux-arm-install:
90+
# needs: ["package"]
91+
# runs-on: ubuntu-latest
92+
# steps:
93+
# - uses: actions/download-artifact@v4
94+
# with:
95+
# name: gem-arm-linux
96+
# path: pkg
97+
# - run: |
98+
# docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
99+
# docker run --rm -v "$(pwd):/test" -w /test --platform=linux/arm/v7 ruby:3.2 \
100+
# /bin/bash -c "
101+
# set -ex
102+
# gem install pkg/tailwindcss-ruby-*.gem
103+
# tailwindcss --help
104+
# "
98105

99106
darwin-x86_64-install:
100107
needs: ["package"]

0 commit comments

Comments
 (0)