-
Notifications
You must be signed in to change notification settings - Fork 1
181 lines (181 loc) · 5.38 KB
/
github-actions.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
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
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: 'check'
python: '3.11'
toxpython: 'python3.11'
tox_env: 'check'
os: 'ubuntu-latest'
- name: 'docs'
python: '3.11'
toxpython: 'python3.11'
tox_env: 'docs'
os: 'ubuntu-latest'
- name: 'py39 (ubuntu/x86_64)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'x64'
tox_env: 'py39'
cibw_arch: 'x86_64'
cibw_build: false
os: 'ubuntu-latest'
- name: 'py39 (windows/AMD64)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'x64'
tox_env: 'py39'
cibw_arch: 'AMD64'
cibw_build: false
os: 'windows-latest'
- name: 'py39 (macos/x86_64)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'x64'
tox_env: 'py39'
cibw_arch: 'x86_64'
cibw_build: false
os: 'macos-13'
- name: 'py310 (ubuntu/x86_64)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'x64'
tox_env: 'py310'
cibw_arch: 'x86_64'
cibw_build: false
os: 'ubuntu-latest'
- name: 'py310 (windows/AMD64)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'x64'
tox_env: 'py310'
cibw_arch: 'AMD64'
cibw_build: false
os: 'windows-latest'
- name: 'py310 (macos/x86_64)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'x64'
tox_env: 'py310'
cibw_arch: 'x86_64'
cibw_build: false
os: 'macos-13'
- name: 'py311 (ubuntu/x86_64)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'x64'
tox_env: 'py311'
cibw_arch: 'x86_64'
cibw_build: false
os: 'ubuntu-latest'
- name: 'py311 (windows/AMD64)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'x64'
tox_env: 'py311'
cibw_arch: 'AMD64'
cibw_build: false
os: 'windows-latest'
- name: 'py311 (macos/x86_64)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'x64'
tox_env: 'py311'
cibw_arch: 'x86_64'
cibw_build: false
os: 'macos-latest'
- name: 'py312 (ubuntu/x86_64)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'x64'
tox_env: 'py312'
cibw_arch: 'x86_64'
cibw_build: false
os: 'ubuntu-latest'
- name: 'py312 (windows/AMD64)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'x64'
tox_env: 'py312'
cibw_arch: 'AMD64'
cibw_build: false
os: 'windows-latest'
- name: 'py312 (macos/x86_64)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'x64'
tox_env: 'py312'
cibw_arch: 'x86_64'
cibw_build: false
os: 'macos-latest'
steps:
- uses: docker/setup-qemu-action@v3
if: matrix.cibw_arch == 'aarch64'
with:
platforms: arm64
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.python_arch }}
- name: install dependencies
run: |
python -mpip install --progress-bar=off cibuildwheel -r ci/requirements.txt
virtualenv --version
pip --version
tox --version
pip list --format=freeze
- name: cibw build and test
if: matrix.cibw_build
run: cibuildwheel
env:
TOXPYTHON: '${{ matrix.toxpython }}'
CIBW_ARCHS: '${{ matrix.cibw_arch }}'
CIBW_BUILD: '${{ matrix.cibw_build }}'
CIBW_BUILD_VERBOSITY: '3'
CIBW_TEST_REQUIRES: >
tox
tox-direct
CIBW_TEST_COMMAND: >
cd {project} &&
tox --skip-pkg-install --direct-yolo -e ${{ matrix.tox_env }} -v
CIBW_TEST_COMMAND_WINDOWS: >
cd /d {project} &&
tox --skip-pkg-install --direct-yolo -e ${{ matrix.tox_env }} -v
- name: regular build and test
env:
TOXPYTHON: '${{ matrix.toxpython }}'
if: >
!matrix.cibw_build
run: >
tox -e ${{ matrix.tox_env }} -v
- uses: codecov/codecov-action@v3
if: matrix.cover
with:
verbose: true
flags: ${{ matrix.tox_env }}
- name: check wheel
if: matrix.cibw_build
run: twine check wheelhouse/*.whl
- name: upload wheel
uses: actions/upload-artifact@v3
if: matrix.cibw_build
with:
path: wheelhouse/*.whl
finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: codecov/codecov-action@v3
with:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}