-
Notifications
You must be signed in to change notification settings - Fork 14
207 lines (203 loc) · 6.55 KB
/
test.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
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
name: Unit tests
on: [push, pull_request]
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test-cxx:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
cxx: g++
extras: yes
- os: ubuntu-22.04
cxx: clang++
extras: yes
- os: macos-12
cxx: clang++
extras: no
runs-on: ${{ matrix.os }}
env:
# Don't error on deprecations: Xcode marks sprintf deprecated and Boost references it
CXX: ${{ matrix.cxx }} -Werror -Wno-error=deprecated-declarations
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.ccache
key: ${{ runner.os }}-cxx-ccache-${{ hashFiles('**') }}
restore-keys: |
${{ runner.os }}-cxx-ccache-
- name: Install system packages
run: ./.ci/install-sys-pkgs.sh
- name: Set up ccache
run: ./.ci/ccache-path.sh
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: pip install jinja2 pycparser packaging
- run: ./bootstrap.sh
- name: Run configure
run: ./.ci/configure.sh ${{ matrix.extras }}
- name: Build
run: make -C build -j4
- name: Run tests
run: ./.ci/cxx-tests.sh
- name: Show ccache stats
run: ccache -s
test-python:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
cc: gcc
cxx: g++
python-version: '3.8'
# Disabled for now because numba/llvmlite (needed for tests)
# doesn't have a pypy wheel, and it's not worth the effect to
# install all the dependencies needed to make that work.
# - os: ubuntu-22.04
# cc: gcc
# cxx: g++
# python-version: pypy-3.7
- os: ubuntu-22.04
cc: gcc
cxx: g++
python-version: '3.11'
- os: ubuntu-22.04
cc: clang
cxx: clang++
python-version: '3.11'
- os: macos-12
cc: clang
cxx: clang++
python-version: '3.11'
runs-on: ${{ matrix.os }}
env:
# Don't error on deprecations: Xcode marks sprintf deprecated and Boost references it
CC: ${{ matrix.cc }} -Werror -Wno-error=deprecated-declarations
CXX: ${{ matrix.cxx }} -Werror -Wno-error=deprecated-declarations
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.ccache
key: ${{ runner.os }}-py-ccache-${{ hashFiles('**') }}
restore-keys: |
${{ runner.os }}-py-ccache-
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install system packages
run: ./.ci/install-sys-pkgs.sh
- name: Set up ccache
run: ./.ci/ccache-path.sh
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: ./.ci/py-requirements.sh
env:
CC: ${{ matrix.cc }} # Do not pass -Werror when building dependencies
- run: ./bootstrap.sh
- run: pip install -v .
- name: Run tests
run: ./.ci/py-tests.sh
# Skip pip-compile because not all configurations have a python3.8 binary
- run: SKIP=pip-compile pre-commit run --all-files
- name: Show ccache stats
run: ccache -s
coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.ccache
key: ${{ runner.os }}-coverage-ccache-${{ hashFiles('**') }}
restore-keys: |
${{ runner.os }}-coverage-ccache-
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install system packages
run: ./.ci/install-sys-pkgs.sh
- name: Set up ccache
run: ./.ci/ccache-path.sh
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Python dependencies
run: ./.ci/py-requirements.sh
- run: ./bootstrap.sh
- name: Prepare Python build for coverage
run: |
echo '[build_ext]' >> setup.cfg
echo 'coverage = yes' >> setup.cfg
- run: pip install -v .
- name: Run Python tests
run: ./.ci/py-tests.sh
- name: Run configure
run: ./.ci/configure.sh yes --disable-optimized --enable-coverage
- name: Build
run: make -C build -j4
- name: Run C++ tests
run: ./.ci/cxx-tests.sh
- name: Collect coverage
run: ./.ci/coverage.sh
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info
- name: Show ccache stats
run: ccache -s
sdist:
needs: [test-cxx, test-python, coverage]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-3.11-${{ hashFiles('requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-3.11-
${{ runner.os }}-pip-
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Python dependencies
run: ./.ci/py-requirements.sh
- run: ./bootstrap.sh
- run: pip install build==0.10.0
- run: python -m build --sdist .
- uses: actions/upload-artifact@v3
with:
name: sdist
path: ./dist/*.tar.gz
cibuildwheel:
needs: [test-cxx, test-python, coverage]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: pypa/[email protected]
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
- name: Tar debug symbols
run: cd wheelhouse && tar -Jcvf "spead2-$(sed 's/.*"\(.*\)"/\1/' ../src/spead2/_version.py)-debug.tar.xz" _spead2*.debug
- uses: actions/upload-artifact@v3
with:
name: debug_symbols
path: ./wheelhouse/spead2-*-debug.tar.xz