Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit 6249ab4

Browse files
authored
ci: add musllinux_1_1 wheels (#3)
* ci: try musllinux 1.2 Signed-off-by: Henry Schreiner <[email protected]> * ci: try musllinux 1.1 Signed-off-by: Henry Schreiner <[email protected]> * chore: bump version, single source Signed-off-by: Henry Schreiner <[email protected]> --------- Signed-off-by: Henry Schreiner <[email protected]>
1 parent 7f3b782 commit 6249ab4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,19 @@ jobs:
1818
linux:
1919
runs-on: ${{ matrix.platform.runner }}
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
platform:
2324
- runner: ubuntu-latest
2425
target: x86_64
2526
- runner: ubuntu-latest
2627
target: x86
28+
- runner: ubuntu-latest
29+
target: x86_64-unknown-linux-musl
30+
manylinux: musllinux_1_1
31+
- runner: ubuntu-latest
32+
target: i686-unknown-linux-musl
33+
manylinux: musllinux_1_1
2734
- runner: ubuntu-latest
2835
target: aarch64
2936
- runner: ubuntu-latest
@@ -43,7 +50,7 @@ jobs:
4350
target: ${{ matrix.platform.target }}
4451
args: --release --out dist
4552
sccache: 'true'
46-
manylinux: auto
53+
manylinux: ${{ matrix.platform.manylinux || 'auto' }}
4754
- name: Upload wheels
4855
uses: actions/upload-artifact@v4
4956
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyproject-fmt-rust"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Format pyproject.toml files"
55
repository = "https://github.com/tox-dev/pyproject-fmt"
66
readme = "README.md"

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ requires = [
66

77
[project]
88
name = "pyproject-fmt-rust"
9-
version = "1.0.1"
109
description = "Format your pyproject.toml file"
1110
readme = "README.md"
1211
keywords = [

0 commit comments

Comments
 (0)