-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (109 loc) · 3.2 KB
/
Copy pathrelease.yml
File metadata and controls
117 lines (109 loc) · 3.2 KB
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
# PyPI: configure Trusted Publishing in https://pypi.org
# and add a GitHub Environment named "pypi" in this repository.
# Release: push an annotated or lightweight tag "v*". Example: git tag -a v0.7.0 -m "Release 0.7.0" && git push origin v0.7.0
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
concurrency:
group: pypi-release-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
id-token: write
jobs:
ci-gate:
uses: ./.github/workflows/ci.yml
linux:
needs: [ci-gate]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# aws-lc-sys (aws_lc_rs) often fails to cross-compile to aarch64 in manylinux; use ring
# (rust_crypto) for that wheel only. Other Linux/macOS/Windows jobs keep the default.
include:
- target: x86_64
maturin_args: --release --out dist --compatibility pypi
- target: aarch64
maturin_args: --release --out dist --compatibility pypi --no-default-features --features rust_crypto
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: dtolnay/rust-toolchain@stable
- uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: ${{ matrix.maturin_args }}
sccache: "true"
manylinux: auto
- uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.target }}
path: dist
macos:
needs: [ci-gate]
runs-on: macos-latest
strategy:
matrix:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: dtolnay/rust-toolchain@stable
- uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
sccache: "true"
- uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.target }}
path: dist
windows:
needs: [ci-gate]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: dtolnay/rust-toolchain@stable
- uses: PyO3/maturin-action@v1
with:
args: --release --out dist
sccache: "true"
- uses: actions/upload-artifact@v4
with:
name: wheels-windows-x86_64
path: dist
publish:
needs: [linux, macos, windows]
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: dtolnay/rust-toolchain@stable
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload wheels and sdist to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
print-hash: true