-
-
Notifications
You must be signed in to change notification settings - Fork 261
103 lines (89 loc) · 2.24 KB
/
build-and-test.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
name: Build, test and release
on:
pull_request:
branches:
- main
push:
branches:
- main
- bugfix/*
- feature/*
tags:
- v*
permissions:
contents: write
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
pip install mypy ruff
make lint
sdist:
name: Build sdist wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
make preprocess
pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: ./dist/*.tar.gz
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
pip install ./dist/*.tar.gz
bdist:
name: Build bdist wheels and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-12, macos-14, windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all
# macOS make is too old
- if: runner.os == 'macOS'
run: |
brew install make automake libtool
which pipx || brew install pipx && pipx ensurepath
- name: Build and test wheels
uses: pypa/cibuildwheel@v2.16.5
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
upload_all:
needs: [bdist, sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
if: startsWith(github.ref, 'refs/tags/')
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@v1.5.0
if: startsWith(github.ref, 'refs/tags/')
with:
password: ${{ secrets.PYPI_TOKEN }}
- name: Upload release files
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
files: |
./dist/*.whl
./dist/*.tar.gz