rusterize 0.1.0__tar.gz → 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rusterize might be problematic. Click here for more details.

@@ -3,9 +3,6 @@ name: CI
3
3
  on:
4
4
  release:
5
5
  types: [published]
6
- push:
7
- branches:
8
- - main
9
6
 
10
7
  permissions:
11
8
  contents: read
@@ -0,0 +1,148 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - compile
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ linux:
13
+ runs-on: ${{ matrix.platform.runner }}
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ platform:
18
+ - runner: ubuntu-22.04
19
+ target: x86_64
20
+ # - runner: ubuntu-22.04
21
+ # target: x86
22
+ - runner: ubuntu-22.04
23
+ target: aarch64
24
+ - runner: ubuntu-22.04
25
+ target: armv7
26
+ # - runner: ubuntu-22.04
27
+ # target: s390x
28
+ - runner: ubuntu-22.04
29
+ target: ppc64le
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+ - uses: actions/setup-python@v5
33
+ with:
34
+ python-version: 3.x
35
+ - name: Build wheels
36
+ uses: PyO3/maturin-action@v1
37
+ with:
38
+ target: ${{ matrix.platform.target }}
39
+ args: --profile dist-release --out dist --find-interpreter
40
+ sccache: "true"
41
+ manylinux: auto
42
+ - name: Upload wheels
43
+ uses: actions/upload-artifact@v4
44
+ with:
45
+ name: wheels-linux-${{ matrix.platform.target }}
46
+ path: dist
47
+
48
+ musllinux:
49
+ runs-on: ${{ matrix.platform.runner }}
50
+ strategy:
51
+ fail-fast: false
52
+ matrix:
53
+ platform:
54
+ - runner: ubuntu-22.04
55
+ target: x86_64
56
+ # - runner: ubuntu-22.04
57
+ # target: x86
58
+ - runner: ubuntu-22.04
59
+ target: aarch64
60
+ - runner: ubuntu-22.04
61
+ target: armv7
62
+ steps:
63
+ - uses: actions/checkout@v4
64
+ - uses: actions/setup-python@v5
65
+ with:
66
+ python-version: 3.x
67
+ - name: Build wheels
68
+ uses: PyO3/maturin-action@v1
69
+ with:
70
+ target: ${{ matrix.platform.target }}
71
+ args: --profile dist-release --out dist --find-interpreter
72
+ sccache: "true"
73
+ manylinux: musllinux_1_2
74
+ - name: Upload wheels
75
+ uses: actions/upload-artifact@v4
76
+ with:
77
+ name: wheels-musllinux-${{ matrix.platform.target }}
78
+ path: dist
79
+
80
+ windows:
81
+ runs-on: ${{ matrix.platform.runner }}
82
+ strategy:
83
+ fail-fast: false
84
+ matrix:
85
+ platform:
86
+ - runner: windows-latest
87
+ target: x64
88
+ # - runner: windows-latest
89
+ # target: x86
90
+ steps:
91
+ - uses: actions/checkout@v4
92
+ - uses: actions/setup-python@v5
93
+ with:
94
+ python-version: 3.x
95
+ architecture: ${{ matrix.platform.target }}
96
+ - name: Build wheels
97
+ uses: PyO3/maturin-action@v1
98
+ with:
99
+ target: ${{ matrix.platform.target }}
100
+ args: --profile dist-release --out dist --find-interpreter
101
+ sccache: "true"
102
+ - name: Upload wheels
103
+ uses: actions/upload-artifact@v4
104
+ with:
105
+ name: wheels-windows-${{ matrix.platform.target }}
106
+ path: dist
107
+
108
+ macos:
109
+ runs-on: ${{ matrix.platform.runner }}
110
+ strategy:
111
+ fail-fast: false
112
+ matrix:
113
+ platform:
114
+ - runner: macos-13
115
+ target: x86_64
116
+ - runner: macos-14
117
+ target: aarch64
118
+ steps:
119
+ - uses: actions/checkout@v4
120
+ - uses: actions/setup-python@v5
121
+ with:
122
+ python-version: 3.x
123
+ - name: Build wheels
124
+ uses: PyO3/maturin-action@v1
125
+ with:
126
+ target: ${{ matrix.platform.target }}
127
+ args: --profile dist-release --out dist --find-interpreter
128
+ sccache: "true"
129
+ - name: Upload wheels
130
+ uses: actions/upload-artifact@v4
131
+ with:
132
+ name: wheels-macos-${{ matrix.platform.target }}
133
+ path: dist
134
+
135
+ sdist:
136
+ runs-on: ubuntu-latest
137
+ steps:
138
+ - uses: actions/checkout@v4
139
+ - name: Build sdist
140
+ uses: PyO3/maturin-action@v1
141
+ with:
142
+ command: sdist
143
+ args: --out dist
144
+ - name: Upload sdist
145
+ uses: actions/upload-artifact@v4
146
+ with:
147
+ name: wheels-sdist
148
+ path: dist