Skip to content

Commit 7abc4b2

Browse files
authored
Merge pull request #2 from flavorjones/flavorjones-dep-tailwind-400alpha25
dep: bump tailwindcss to 4.0.0-alpha.25
2 parents 397ac04 + c88c056 commit 7abc4b2

File tree

2 files changed

+40
-33
lines changed

2 files changed

+40
-33
lines changed

.github/workflows/gem-install.yml

Lines changed: 38 additions & 31 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
@@ -64,37 +71,37 @@ jobs:
6471
- run: "gem install pkg/tailwindcss-ruby-*.gem"
6572
- run: "tailwindcss --help"
6673

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"
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"]

lib/tailwindcss/ruby/upstream.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Tailwindcss
22
module Ruby
33
module Upstream
4-
VERSION = "v3.4.13"
4+
VERSION = "v4.0.0-alpha.25"
55

66
# rubygems platform name => upstream release filename
77
NATIVE_PLATFORMS = {
@@ -11,7 +11,7 @@ module Upstream
1111
"x86_64-darwin" => "tailwindcss-macos-x64",
1212
"x86_64-linux" => "tailwindcss-linux-x64",
1313
"aarch64-linux" => "tailwindcss-linux-arm64",
14-
"arm-linux" => "tailwindcss-linux-armv7",
14+
# "arm-linux" => "tailwindcss-linux-armv7",
1515
}
1616
end
1717
end

0 commit comments

Comments
 (0)