-
Notifications
You must be signed in to change notification settings - Fork 0
301 lines (301 loc) · 9.48 KB
/
main.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
name: CI
on: push
env:
PRIMARY_PYTHON_VERSION: '3.12'
jobs:
cloc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Count Lines of Code (cloc) for the PTtools library
uses: djdefi/cloc-action@6
with:
options: ${{ github.workspace }}/pttools --exclude-list-file=.clocignore
- name: Count Lines of Code (cloc) for the repository
uses: djdefi/cloc-action@6
with:
options: ${{ github.workspace }} --exclude-list-file=.clocignore
graph:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
- name: Print Python version
run: python -V
- name: Install graphviz
run: |
sudo apt-get update
sudo apt-get install -y graphviz
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Run Pyreverse
run: |
mkdir uml
pyreverse pttools -o png -d ./uml
pyreverse pttools -o svg -d ./uml
- name: Run Pyan
continue-on-error: true
run: |
./gen_call_graphs.sh "all" "./**/*.py"
./gen_call_graphs.sh "bubble" "./pttools/bubble/**.py"
./gen_call_graphs.sh "pttools" "./pttools/**.py"
./gen_call_graphs.sh "pttools_tests" "./pttools/**.py" "./pttools/**/*.py" "./tests/**.py"
./gen_call_graphs.sh "ssmtools" "./pttools/ssmtools/**.py"
./gen_call_graphs.sh "tests" "./tests/**/*.py"
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Graph
path: |
call_graphs
uml
if-no-files-found: error
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
- name: Print Python version
run: python -V
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Run Pylint
run: pylint pttools tests 2>&1 | tee pylint.txt
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Lint
path: |
${{ github.workspace }}/pylint.txt
if-no-files-found: error
# fossa:
# runs-on: ubuntu-latest
# timeout-minutes: 5
# steps:
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
# - name: Print Python version
# run: python -V
# - name: Checkout
# uses: actions/checkout@v4
# - name: Load pip cache
# uses: actions/cache@v4
# with:
# path: .pip
# key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
# restore-keys: |
# pip-${{ runner.os }}-
# pip-
# - name: Install requirements
# run: |
# pip --cache-dir=.pip install --upgrade pip
# pip --cache-dir=.pip install --upgrade wheel
# pip --cache-dir=.pip install -r requirements.txt
# - name: Install FOSSA
# run: |
# curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash
# - name: Run FOSSA
# run: fossa analyze
# env:
# FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
test-numba:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Print Python version
run: python -V
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Print Numba sysinfo
run: numba --sysinfo | tee numba-sysinfo.txt
- name: Generate reference data
run: python3 pttools/bubble/fluid_reference.py
env:
PYTHONPATH: .
- name: Run tests
run: |
set -o pipefail
pytest | tee test-output.txt
coverage json
- name: Upload results
uses: actions/upload-artifact@v4
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
name: Test results with Numba
path: |
coverage.xml
coverage.json
htmlcov
numba-sysinfo.txt
test-output.txt
test-results
if-no-files-found: error
# test-numba-old:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# strategy:
# matrix:
# python-version: ['3.7']
# env:
# PRIMARY_OLD_PYTHON_VERSION: '3.7'
# steps:
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# - name: Print Python version
# run: python -V
# - name: Checkout
# uses: actions/checkout@v4
# - name: Load pip cache
# uses: actions/cache@v4
# with:
# path: .pip
# key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
# restore-keys: |
# pip-${{ runner.os }}-
# pip-
# - name: Install requirements
# run: |
# pip --cache-dir=.pip install --upgrade pip
# pip --cache-dir=.pip install --upgrade wheel
# pip --cache-dir=.pip install -r requirements-old.txt -r requirements-dev.txt
# - name: Print Numba sysinfo
# run: numba --sysinfo | tee numba-sysinfo.txt
# - name: Run tests
# run: |
# set -o pipefail
# pytest | tee test-output.txt
# coverage json
# - name: Upload results
# uses: actions/upload-artifact@v4
# if: ${{ matrix.python-version == env.PRIMARY_OLD_PYTHON_VERSION }}
# with:
# name: Test results with old Numba
# path: |
# coverage.xml
# coverage.json
# htmlcov
# numba-sysinfo.txt
# test-output.txt
# test-results
# if-no-files-found: error
test-python:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Print Python version
run: python -V
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Print Numba sysinfo
run: numba --sysinfo | tee numba-sysinfo.txt
- name: Generate reference data
run: python3 pttools/bubble/fluid_reference.py
env:
PYTHONPATH: .
- name: Run tests with coverage
# Without pytest-pythonpath the PYTHONPATH may have to be set manually
# PYTHONPATH="${PYTHONPATH}${PYTHONPATH:+:}./tests" pytest | tee test-output.txt
# Coverage of Numba-compiled functions does not get reported
run: |
set -o pipefail
NUMBA_DISABLE_JIT=1 pytest | tee test-output.txt
coverage json
- name: Upload results
uses: actions/upload-artifact@v4
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
name: Test results without Numba
path: |
coverage.xml
coverage.json
htmlcov
numba-sysinfo.txt
test-output.txt
test-results
if-no-files-found: error
- name: Upload results to Codecov
uses: codecov/codecov-action@v1
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ github.workspace }}/coverage.xml