Skip to content

Commit 30a5600

Browse files
committed
feat: many linux 2014 build
1 parent b928750 commit 30a5600

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

.github/workflows/python-ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,26 @@ jobs:
8787
name: wheels-linux-x86_64
8888
path: dist
8989

90+
linux-manylinux:
91+
runs-on: ubuntu-latest
92+
strategy:
93+
matrix:
94+
manylinux: [2014]
95+
steps:
96+
- uses: actions/checkout@v4
97+
- name: Build wheels
98+
uses: PyO3/maturin-action@v1
99+
with:
100+
target: x86_64-unknown-linux-gnu
101+
manylinux: ${{ matrix.manylinux }}
102+
args: --release --out dist --manifest-path crates/cli/Cargo.toml
103+
sccache: "true"
104+
- name: Upload wheels
105+
uses: actions/upload-artifact@v4
106+
with:
107+
name: wheels-linux-x86_64-manylinux${{ matrix.manylinux }}
108+
path: dist
109+
90110
sdist:
91111
runs-on: ubuntu-latest
92112
steps:

playground/src/index.css

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ html,
1717
}
1818

1919
.shadow-copied {
20-
--tw-shadow:
21-
0 0 0 1px theme("colors.white"), inset 0 0 0 1px theme("colors.white");
22-
--tw-shadow-colored:
23-
0 0 0 1px var(--tw-shadow-color), inset 0 0 0 1px var(--tw-shadow-color);
20+
--tw-shadow: 0 0 0 1px theme("colors.white"),
21+
inset 0 0 0 1px theme("colors.white");
22+
--tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color),
23+
inset 0 0 0 1px var(--tw-shadow-color);
2424

25-
box-shadow:
26-
var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
27-
var(--tw-shadow);
25+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
26+
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2827
}

0 commit comments

Comments
 (0)