|
19 | 19 | strategy:
|
20 | 20 | fail-fast: false
|
21 | 21 | 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" |
23 | 30 | runs-on: ubuntu-latest
|
24 | 31 | steps:
|
25 | 32 | - uses: actions/checkout@v4
|
@@ -64,37 +71,37 @@ jobs:
|
64 | 71 | - run: "gem install pkg/tailwindcss-ruby-*.gem"
|
65 | 72 | - run: "tailwindcss --help"
|
66 | 73 |
|
67 |
| - linux-musl-install: |
68 |
| - needs: ["package"] |
69 |
| - runs-on: ubuntu-latest |
70 |
| - container: |
71 |
| - image: ruby:3.2-alpine |
72 |
| - steps: |
73 |
| - - uses: actions/download-artifact@v4 |
74 |
| - with: |
75 |
| - name: gem-x86_64-linux |
76 |
| - path: pkg |
77 |
| - - run: "apk add build-base" # to compile racc, etc. |
78 |
| - - run: "gem update --system" # let's make sure the latest is working for us (upstream test, see #200) |
79 |
| - - run: "gem install pkg/tailwindcss-ruby-*.gem" |
80 |
| - - run: "tailwindcss --help" |
| 74 | + # linux-musl-install: |
| 75 | + # needs: ["package"] |
| 76 | + # runs-on: ubuntu-latest |
| 77 | + # container: |
| 78 | + # image: ruby:3.2-alpine |
| 79 | + # steps: |
| 80 | + # - uses: actions/download-artifact@v4 |
| 81 | + # with: |
| 82 | + # name: gem-x86_64-linux |
| 83 | + # path: pkg |
| 84 | + # - run: "apk add build-base" # to compile racc, etc. |
| 85 | + # - run: "gem update --system" # let's make sure the latest is working for us (upstream test, see #200) |
| 86 | + # - run: "gem install pkg/tailwindcss-ruby-*.gem" |
| 87 | + # - run: "tailwindcss --help" |
81 | 88 |
|
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 | + # " |
98 | 105 |
|
99 | 106 | darwin-x86_64-install:
|
100 | 107 | needs: ["package"]
|
|
0 commit comments