-
Notifications
You must be signed in to change notification settings - Fork 13
215 lines (206 loc) · 7.02 KB
/
code-quality.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
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@v3
with:
ref: ${{ github.event.pull_request.base_ref }}
- 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@v3
- 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@v3
- 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-test-performance-base:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.base_ref }}
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- uses: ./.github/workflows/actions/compile
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: 'pip'
- name: Install Python Dependencies
shell: sh
run: |
python -m pip install --upgrade pip
pip install -r tests-integration/requirements.txt
- name: Test the library
run: make test-performance
- name: Cache performance results
uses: actions/cache@v3
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@v3
- uses: ./.github/workflows/actions/setup
with:
os: ${{ matrix.os }}
- uses: ./.github/workflows/actions/compile
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: 'pip'
- name: Install Python Dependencies
shell: sh
run: |
python -m pip install --upgrade pip
pip install -r tests-integration/requirements.txt
- name: Test the library
run: make test-performance
- name: Cache performance results
uses: actions/cache@v3
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@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
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@v3
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
- run: mv ./tests-integration/results/corr-double-param-jobs.csv double-param-target.csv
- name: Restore baseline profiles
uses: actions/cache/restore@v3
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
- run: 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@v3
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@v3
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@v3
- 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@v3
with:
gcov: true