-
Notifications
You must be signed in to change notification settings - Fork 23
314 lines (314 loc) · 11.9 KB
/
code-quality.yml
File metadata and controls
314 lines (314 loc) · 11.9 KB
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
302
303
304
305
306
307
308
309
310
311
312
313
314
name: Code Quality
on:
pull_request:
jobs:
warnings-base:
runs-on: ${{ matrix.os }}
strategy:
# Ensures that if the task on one system fails, other systems (the rest of the matrix) will be
# still executed.
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.base.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.base.sha || github.event.pull_request.base_ref || github.sha }}
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- uses: ./.github/workflows/actions/compile
with:
build-log-output-file: "warnings-base"
warnings-new:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- uses: ./.github/workflows/actions/compile
with:
build-log-output-file: "warnings-new"
run-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- uses: ./.github/workflows/actions/compile
with:
build-log-output-file: "warnings-new"
- name: Test the library
run: make test
run-tests-python:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.13"]
install-type: ["src", "tarball"]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- name: Set up Python and its dependencies ${{ inputs.python-version }}
uses: ./.github/workflows/actions/setup-python
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
- name: Write the released version to VERSION file
shell: bash
run: |
echo "v0.0.0-dev.1" > VERSION
echo "v0.0.0-dev.1" > bindings/python/VERSION
- name: Compile the Python bindings from the source
uses: ./.github/workflows/actions/compile-python-src
- name: Compile the Python bindings from the tarball
if: matrix.install-type == 'tarball'
uses: ./.github/workflows/actions/compile-python-tarball
- name: Test the Python bindings
uses: ./.github/workflows/actions/test-python
# run-test-performance-base:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, macos-latest]
# steps:
# - uses: actions/checkout@v6
# with:
# # fetch-depth: 0
# # If PR, checkout the PR's repo (needed for PRs coming from forks).
# repository: ${{ github.event.pull_request.base.repo.full_name || github.repository }}
# ref: ${{ github.event.pull_request.base.sha || github.event.pull_request.base_ref || github.sha }}
# - uses: ./.github/workflows/actions/setup
# with:
# os: ${{ matrix.os }}
# - uses: ./.github/workflows/actions/compile
# - name: Set up Python
# uses: actions/setup-python@v6
# with:
# python-version: 3.13
# cache: "pip"
# - name: Install Python Dependencies
# shell: sh
# run: |
# python -m pip install --upgrade pip
# pip install ./tests-integration/
# - name: Test the library
# run: make test-performance
# - name: Cache performance results
# uses: actions/cache@v5
# with:
# path: |
# ./tests-integration/results/corr-single-param-jobs.csv
# ./tests-integration/results/corr-double-param-jobs.csv
# key: performance-tests-baseline-${{ runner.os }}-${{ github.sha }}
# run-test-performance:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, macos-latest]
# steps:
# - uses: actions/checkout@v6
# with:
# # fetch-depth: 0
# # If PR, checkout the PR's repo (needed for PRs coming from forks).
# repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
# ref: ${{ github.event.pull_request.head.sha || github.sha }}
# - uses: ./.github/workflows/actions/setup
# with:
# os: ${{ matrix.os }}
# - uses: ./.github/workflows/actions/compile
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: 3.13
# cache: "pip"
# - name: Install Python Dependencies
# shell: sh
# run: |
# python -m pip install --upgrade pip
# pip install ./tests-integration/
# - name: Test the library
# run: make test-performance
# - name: Cache performance results
# uses: actions/cache@v5
# with:
# path: |
# ./tests-integration/results/corr-single-param-jobs.csv
# ./tests-integration/results/corr-double-param-jobs.csv
# key: performance-tests-target-${{ runner.os }}-${{ github.sha }}
# compare-performance:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, macos-latest]
# needs: [run-test-performance, run-test-performance-base]
# steps:
# - uses: actions/checkout@v6
# with:
# # fetch-depth: 0
# # If PR, checkout the PR's repo (needed for PRs coming from forks).
# repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
# ref: ${{ github.event.pull_request.head.sha || github.sha }}
# - name: Set up Python
# uses: actions/setup-python@v6
# with:
# python-version: 3.13
# cache: "pip"
# - name: Install Python Dependencies
# shell: sh
# run: |
# python -m pip install --upgrade pip
# pip install tabulate pandas
# - name: Restore target profiles
# uses: actions/cache/restore@v5
# with:
# path: |
# ./tests-integration/results/corr-single-param-jobs.csv
# ./tests-integration/results/corr-double-param-jobs.csv
# key: performance-tests-target-${{ runner.os }}-${{ github.sha }}
# - run: |
# mv ./tests-integration/results/corr-single-param-jobs.csv single-param-target.csv
# mv ./tests-integration/results/corr-double-param-jobs.csv double-param-target.csv
# - name: Restore baseline profiles
# uses: actions/cache/restore@v5
# with:
# path: |
# ./tests-integration/results/corr-single-param-jobs.csv
# ./tests-integration/results/corr-double-param-jobs.csv
# key: performance-tests-baseline-${{ runner.os }}-${{ github.sha }}
# - run: |
# mv ./tests-integration/results/corr-single-param-jobs.csv single-param-baseline.csv
# mv ./tests-integration/results/corr-double-param-jobs.csv double-param-baseline.csv
# - name: LOOK HERE for Comparison of operations accepting single automaton as parameters
# run: python3 tests-integration/scripts/compare_profiles.py single-param-target.csv single-param-baseline.csv
# - name: LOOK HERE for Comparison of operations accepting two automata as parameters
# run: python3 tests-integration/scripts/compare_profiles.py double-param-target.csv double-param-baseline.csv
compare-versions:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
needs: [warnings-base, warnings-new]
steps:
- name: Restore new cache
uses: actions/cache/restore@v5
with:
path: ./build_log
key: build-log-warnings-new-${{ runner.os }}-${{ github.sha }}
- run: mv build_log new_warnings
- name: Restore base cache
uses: actions/cache/restore@v5
with:
path: ./build_log
key: build-log-warnings-base-${{ runner.os }}-${{ github.sha }}
- run: mv build_log base_warnings
- name: Print base warnings
run: cat base_warnings
- name: Print new warnings
run: cat new_warnings
- name: Create comparison diff file
run: |
diff base_warnings new_warnings | grep "^> *" | sed "s/^> //g" > comparison
cat comparison
- name: Count number of warnings
run: |
number_of_warnings=`cat comparison | grep "warning:" | wc -l`
echo $number_of_warnings
if [ $number_of_warnings -gt 0 ]; then
exit 1
fi
code-coverage:
runs-on: ubuntu-latest
needs: run-tests
steps:
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/setup
- name: Build library for coverage
run: make coverage
- name: Test the library
run: make test
- name: Upload coverage to codecov
uses: codecov/codecov-action@v5
with:
gcov: true
format-check:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/setup
- name: Check formatting using treefmt through Nix
run: |
nix fmt
if [ -n "$(git status --porcelain)" ]; then
echo "ERROR: Code is not properly formatted. Please run 'nix fmt' locally and commit the changes:"
git diff
exit 1
else
echo "Code is properly formatted."
fi
build-docs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
with:
# fetch-depth: 0
# If PR, checkout the PR's repo (needed for PRs coming from forks).
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/workflows/actions/docs
with:
os: ${{ matrix.os }}