-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (79 loc) · 2.15 KB
/
release.yml
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
name: Build, test and release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: dtolnay/rust-toolchain@stable
- name: "Rust: Check and test"
run: |
cargo fmt --all -- --check
cargo check
cargo clippy -- -D warnings
cargo test
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dtpu --find-links dist --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: dtolnay/rust-toolchain@stable
- name: "Rust: Check and test"
run: |
cargo fmt --all -- --check
cargo check
cargo clippy -- -D warnings
cargo test
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
manylinux: auto
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dist/*.whl --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
release:
name: Release
runs-on: ubuntu-latest
needs: [linux, windows]
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Publish release to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
pip install --upgrade twine
twine upload --skip-existing *