-
Notifications
You must be signed in to change notification settings - Fork 223
391 lines (348 loc) · 13.5 KB
/
artifact.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
name: artifact
on: push
env:
RUST_TOOLCHAIN: "nightly-2024-03-27"
jobs:
sdist:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
env:
RUST_TOOLCHAIN: "1.72" # MSRV
steps:
- name: rustup stable
run: |
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain "${RUST_TOOLCHAIN}" -y
rustup default "${RUST_TOOLCHAIN}"
- uses: actions/checkout@v4
- run: python3 -m pip install --user --upgrade pip "maturin>=1,<2" wheel
- name: Vendor dependencies
run: |
maturin build
cargo fetch
mkdir .cargo
cp ci/sdist.toml .cargo/config.toml
cargo vendor include/cargo --versioned-dirs
- run: maturin sdist --out=dist
- run: python3 -m pip install --user dist/orjson*.tar.gz
env:
CARGO_NET_OFFLINE: "true"
- run: python3 -m pip install --user -r test/requirements.txt -r integration/requirements.txt mypy
- run: pytest -s -rxX -v -n 4 test
env:
PYTHONMALLOC: "debug"
- run: ./integration/run thread
- run: ./integration/run http
- run: ./integration/run init
- run: ./integration/run typestubs
- name: Store sdist
if: "startsWith(github.ref, 'refs/tags/')"
uses: actions/upload-artifact@v4
with:
name: orjson_sdist
path: dist
overwrite: true
retention-days: 1
manylinux_2_17_amd64:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python: [
{ version: '3.12', abi: 'cp312-cp312' },
{ version: '3.11', abi: 'cp311-cp311' },
{ version: '3.10', abi: 'cp310-cp310' },
{ version: '3.9', abi: 'cp39-cp39' },
{ version: '3.8', abi: 'cp38-cp38' },
]
env:
CC: "clang"
CFLAGS: "-Os -fstrict-aliasing -flto=full"
LDFLAGS: "-fuse-ld=lld -Wl,--as-needed"
RUSTFLAGS: "-C linker=clang -C lto=fat -C link-arg=-fuse-ld=lld -Z mir-opt-level=4 -Z virtual-function-elimination -Z threads=4 -D warnings"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
UNSAFE_PYO3_SKIP_VERSION_CHECK: "1"
PATH: "/__w/orjson/orjson/.venv/bin:/github/home/.cargo/bin:/root/.local/bin:/root/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
container:
image: fedora:41
options: --user 0
steps:
- uses: actions/checkout@v4
- name: Build environment
run: |
dnf install -y rustup clang lld python${{ matrix.python.version }}
rustup-init --default-toolchain "${RUST_TOOLCHAIN}-x86_64-unknown-linux-gnu" --profile minimal --component rust-src -y
cargo fetch --target=x86_64-unknown-linux-gnu &
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv --python python${{ matrix.python.version }}
uv pip install --upgrade "maturin>=1,<2" -r test/requirements.txt -r integration/requirements.txt
mkdir .cargo
cp ci/config.toml .cargo/config.toml
- name: maturin
run: |
maturin build --release --strip \
--features=no-panic,unstable-simd,yyjson \
--compatibility manylinux_2_17 \
--interpreter python${{ matrix.python.version }} \
--target=x86_64-unknown-linux-gnu
uv pip install target/wheels/orjson*.whl
- run: pytest -s -rxX -v -n 4 test
env:
PYTHONMALLOC: "debug"
- run: ./integration/run thread
- run: ./integration/run http
- run: ./integration/run init
- name: Store wheels
if: "startsWith(github.ref, 'refs/tags/')"
uses: actions/upload-artifact@v4
with:
name: orjson_manylinux_2_17_amd64_${{ matrix.python.version }}
path: target/wheels
overwrite: true
retention-days: 1
# musllinux_1_2:
# runs-on: ubuntu-22.04
# strategy:
# fail-fast: false
# matrix:
# python: [
# { version: '3.12' },
# { version: '3.11' },
# { version: '3.10' },
# { version: '3.9' },
# { version: '3.8' },
# ]
# platform:
# - target: aarch64-unknown-linux-musl
# arch: aarch64
# platform: linux/arm64
# - target: x86_64-unknown-linux-musl
# arch: x86_64
# platform: linux/amd64
# steps:
# - uses: actions/checkout@v4
# - name: build-std
# run: |
# mkdir .cargo
# cp ci/config.toml .cargo/config.toml
# - name: Build
# uses: PyO3/maturin-action@v1
# env:
# CC: "gcc"
# CFLAGS: "-Os"
# LDFLAGS: "-Wl,--as-needed"
# RUSTFLAGS: "-Z mir-opt-level=4 -Z threads=4 -D warnings -C target-feature=-crt-static"
# CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
# UNSAFE_PYO3_SKIP_VERSION_CHECK: "1"
# with:
# rust-toolchain: nightly-2024-03-27
# rustup-components: rust-src
# target: ${{ matrix.platform.target }}
# manylinux: musllinux_1_2
# args: --release --strip --out=dist --features=no-panic,unstable-simd,yyjson -i python${{ matrix.python.version }}
# - name: QEMU
# if: matrix.platform.arch != 'x86_64'
# uses: docker/setup-qemu-action@v3
# with:
# image: tonistiigi/binfmt:qemu-v8.1.5
# platforms: ${{ matrix.platform.platform }}
# - name: Test
# uses: addnab/docker-run-action@v3
# with:
# image: quay.io/pypa/musllinux_1_2_${{ matrix.platform.arch }}:latest
# options: -v ${{ github.workspace }}:/io -w /io
# run: |
# apk add tzdata
# sed -i '/^psutil/d' test/requirements.txt # missing 3.11, 3.12 wheels
# sed -i '/^numpy/d' test/requirements.txt
# python${{ matrix.python.version }} -m venv venv
# venv/bin/pip install -U pip wheel
# venv/bin/pip install -r test/requirements.txt
# venv/bin/pip install orjson --no-index --find-links dist/ --force-reinstall
# venv/bin/python -m pytest -s -rxX -v -n 4 test
# - name: Store wheels
# if: "startsWith(github.ref, 'refs/tags/')"
# uses: actions/upload-artifact@v4
# with:
# name: orjson_musllinux_1_2_${{ matrix.platform.arch }}_${{ matrix.python.version }}
# path: dist
# overwrite: true
# retention-days: 1
# manylinux_2_17_non_amd64:
# runs-on: ubuntu-22.04
# strategy:
# fail-fast: false
# matrix:
# python: [
# { version: '3.12', abi: 'cp312-cp312' },
# { version: '3.11', abi: 'cp311-cp311' },
# { version: '3.10', abi: 'cp310-cp310' },
# { version: '3.9', abi: 'cp39-cp39' },
# { version: '3.8', abi: 'cp38-cp38' },
# ]
# target: [
# {
# arch: 'aarch64',
# cflags: '-Os -flto=full -fstrict-aliasing',
# features: 'no-panic,unstable-simd,yyjson',
# rustflags: '-Z mir-opt-level=4 -C lto=fat -D warnings',
# target: 'aarch64-unknown-linux-gnu',
# },
# {
# arch: 'armv7',
# cflags: '-Os -flto=full -fstrict-aliasing',
# features: 'no-panic,yyjson', # no SIMD
# rustflags: '-Z mir-opt-level=4 -C lto=fat -D warnings -C opt-level=s',
# target: 'armv7-unknown-linux-gnueabihf',
# },
# {
# arch: 'ppc64le',
# cflags: '-Os -flto=full -fstrict-aliasing',
# features: 'no-panic,unstable-simd,yyjson',
# rustflags: '-Z mir-opt-level=4 -C lto=fat -D warnings',
# target: 'powerpc64le-unknown-linux-gnu',
# },
# {
# arch: 's390x',
# cflags: '-Os -flto=full -fstrict-aliasing -march=z10',
# # no unstable-simd as rotate_elements_left() causes exit 125 in at least QEMU
# features: 'no-panic,yyjson',
# rustflags: '-Z mir-opt-level=4 -C lto=fat -D warnings -C target-cpu=z10',
# target: 's390x-unknown-linux-gnu',
# },
# ]
# steps:
# - uses: actions/checkout@v4
# - name: build-std
# run: |
# mkdir .cargo
# cp ci/config.toml .cargo/config.toml
# - name: Build
# uses: PyO3/maturin-action@v1
# env:
# PYO3_CROSS_LIB_DIR: "/opt/python/${{ matrix.python.abi }}"
# CFLAGS: "${{ matrix.target.cflags }}"
# LDFLAGS: "-Wl,--as-needed"
# CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
# RUSTFLAGS: "${{ matrix.target.rustflags }}"
# UNSAFE_PYO3_SKIP_VERSION_CHECK: "1"
# with:
# target: ${{ matrix.target.target }}
# rust-toolchain: nightly-2024-03-27
# rustup-components: rust-src
# manylinux: auto
# args: --release --strip --out=dist --features=${{ matrix.target.features }} -i python${{ matrix.python.version }}
# - uses: uraimo/run-on-arch-action@v2
# name: Test
# with:
# arch: ${{ matrix.target.arch }}
# distro: ubuntu22.04
# githubToken: ${{ github.token }}
# install: |
# export TZ=UTC
# export DEBIAN_FRONTEND=noninteractive
# apt-get update
# apt-get install -y --no-install-recommends software-properties-common gpg gpg-agent curl
# add-apt-repository ppa:deadsnakes/ppa
# apt-get update
# apt-get install -y python${{ matrix.python.version }}-dev python${{ matrix.python.version }}-venv
# run: |
# python${{ matrix.python.version }} -m venv venv
# venv/bin/pip install -U pip wheel
# venv/bin/pip install -r test/requirements.txt
# venv/bin/pip install orjson --no-index --find-links dist/ --force-reinstall
# venv/bin/python -m pytest -s -rxX -v -n 2 test
# - name: Store wheels
# if: "startsWith(github.ref, 'refs/tags/')"
# uses: actions/upload-artifact@v4
# with:
# name: orjson_manylinux_2_17_${{ matrix.target.arch }}_${{ matrix.python.version }}
# path: dist
# overwrite: true
# retention-days: 1
macos_universal2:
runs-on: macos-14
strategy:
fail-fast: false
matrix:
python: [
{ version: '3.12', macosx_target: "10.15" },
{ version: '3.11', macosx_target: "10.15" },
{ version: '3.10', macosx_target: "10.15" },
]
env:
CC: "clang"
CFLAGS: "-Os -fstrict-aliasing -flto=full"
LDFLAGS: "-Wl,--as-needed"
CFLAGS_x86_64_apple_darwin: "-O2 -fstrict-aliasing -flto=full -march=x86-64-v2 -mtune=generic"
CFLAGS_aarch64_apple_darwin: "-O2 -fstrict-aliasing -flto=full -mcpu=apple-m1 -mtune=generic"
RUSTFLAGS: "-C lto=fat -Z mir-opt-level=4 -Z virtual-function-elimination -Z threads=3 -D warnings"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
UNSAFE_PYO3_SKIP_VERSION_CHECK: "1"
PATH: "/Users/runner/work/orjson/orjson/.venv/bin:/Users/runner/.cargo/bin:/usr/local/opt/curl/bin:/usr/local/bin:/usr/local/sbin:/Users/runner/bin:/Library/Frameworks/Python.framework/Versions/Current/bin:/usr/bin:/bin:/usr/sbin:/sbin"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python.version }}"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "nightly-2024-03-27"
targets: "x86_64-apple-darwin, aarch64-apple-darwin"
components: "rust-src"
- name: Build environment
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv --python python${{ matrix.python.version }}
uv pip install --upgrade "maturin>=1,<2" -r test/requirements.txt -r integration/requirements.txt
cargo fetch &
mkdir .cargo
cp ci/config.toml .cargo/config.toml
echo $PATH
- name: maturin
run: |
PATH=$HOME/.cargo/bin:$PATH \
MACOSX_DEPLOYMENT_TARGET="${{ matrix.python.macosx_target }}" \
PYO3_CROSS_LIB_DIR=$(python -c "import sysconfig;print(sysconfig.get_config_var('LIBDIR'))") \
maturin build --release --strip \
--features=no-panic,unstable-simd,yyjson \
--interpreter python${{ matrix.python.version }} \
--target=universal2-apple-darwin
uv pip install target/wheels/orjson*.whl
- run: pytest -s -rxX -v -n 4 test
env:
PYTHONMALLOC: "debug"
- run: source .venv/bin/activate && ./integration/run thread
- run: source .venv/bin/activate && ./integration/run http
- run: source .venv/bin/activate && ./integration/run init
- name: Store wheels
if: "startsWith(github.ref, 'refs/tags/')"
uses: actions/upload-artifact@v4
with:
name: orjson_universal2_${{ matrix.python.version }}
path: target/wheels
overwrite: true
retention-days: 1
# pypi:
# name: PyPI
# runs-on: ubuntu-22.04
# if: "startsWith(github.ref, 'refs/tags/')"
# needs: [ manylinux_2_17_amd64, manylinux_2_17_non_amd64, musllinux_1_2, macos_universal2, sdist ]
# steps:
# - uses: actions/download-artifact@v4
# with:
# pattern: orjson_*
# merge-multiple: true
# - uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# - run: pip install pip "maturin>=1,<2"
# - run: ls -1 .
# - name: deploy wheel
# run: maturin upload --skip-existing --username "$MATURIN_USERNAME" *.whl
# env:
# MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
# - name: deploy sdist
# run: maturin upload --skip-existing --username "$MATURIN_USERNAME" *.tar.gz
# env:
# MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}