-
Notifications
You must be signed in to change notification settings - Fork 2
358 lines (354 loc) · 11.2 KB
/
Copy pathcodecov.yml
File metadata and controls
358 lines (354 loc) · 11.2 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
name: CodeCoverage
permissions: { }
on:
push:
paths-ignore:
- 'ansible/**'
- 'doc/**'
- 'sphinx/**'
- 'Cargo.lock'
- 'Cargo.toml'
branches:
- 'main'
pull_request:
paths-ignore:
- 'ansible/**'
- 'doc/**'
- 'sphinx/**'
- 'Cargo.lock'
- 'Cargo.toml'
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
lib-unit-test:
name: lib unit test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libjemalloc-dev libmimalloc-dev libc-ares-dev libssl-dev libpython3-dev liblua5.4-dev
sudo apt-get install libbpf-dev libcrypto-mb-dev
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/lib_unit_test.sh
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: lib
name: lib-unit-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
lib-reuseport:
name: reuseport test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install libbpf-dev
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/lib_reuseport.sh
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: reuseport
name: lib-reuseport
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
vey-mkcert-test:
name: vey-mkcert test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install libssl-dev
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/vey-mkcert.sh
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: vey-mkcert
name: vey-mkcert-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
vey-keyless-test:
name: vey-keyless test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libmimalloc-dev libssl-dev libcrypto-mb-dev pkg-config
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/vey-keyless.sh
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: vey-keyless
name: vey-keyless-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
vey-proxy-test:
name: vey-proxy test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Check if systemd-resolved is running
run: |
sudo systemctl status systemd-resolved
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libjemalloc-dev libc-ares-dev libssl-dev libpython3-dev liblua5.4-dev
sudo apt-get install libbpf-dev
- name: Install CA Certificates
run: |
sudo apt-get install ca-certificates
- name: Install test libs
run: |
sudo apt-get install python3-requests python3-pycurl python3-dnspython python3-socks
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Install and run c-icap
run: |
sudo apt-get install c-icap
sudo sed -i 's/^MaxServers .*/MaxServers 100/' /etc/c-icap/c-icap.conf
sudo systemctl start c-icap
- name: Install netcat-openbsd
run: |
sudo apt-get install netcat-openbsd
- name: Install wait4x
run: |
sudo apt-get install wait4x
- name: Listen udpdump port
run: |
nc -u -l -k 127.0.0.1 5555 >/dev/null &
- name: Backup /etc/hosts # delete this after systemd-resolved 261
run: |
sudo cp /etc/hosts /etc/hosts.backup
- name: Edit /etc/hosts # delete this after systemd-resolved 261
run: |
cp /etc/hosts /tmp/ci-hosts
echo "127.0.0.1 httpbin.local" >> /tmp/ci-hosts
echo "127.0.0.1 vey-proxy.local" >> /tmp/ci-hosts
sudo cp /tmp/ci-hosts /etc/hosts
- name: Add static records to systemd-resolved # work only with systemd-resolved >= 261
run: |
sudo mkdir -p /run/systemd/resolve/static.d
sudo cp ${{ github.workspace }}/scripts/coverage/vey-bench/resolved-ci-static.rr /run/systemd/resolve/static.d/
sudo systemctl restart systemd-resolved
resolvectl query httpbin.local vey-proxy.local
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/vey-proxy.sh
- name: Restore /etc/hosts # delete this after systemd-resolved 261
run: |
sudo mv /etc/hosts.backup /etc/hosts
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: vey-proxy
name: vey-proxy-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
vey-bench-test:
name: vey-bench test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Check if systemd-resolved is running
run: |
sudo systemctl status systemd-resolved
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libmimalloc-dev libc-ares-dev libssl-dev libpython3-dev liblua5.4-dev
- name: Install CA Certificates
run: |
sudo apt-get install ca-certificates
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Install netcat-openbsd
run: |
sudo apt-get install netcat-openbsd
- name: Install wait4x
run: |
sudo apt-get install wait4x
- name: Install thrift compiler
run: |
sudo apt-get install thrift-compiler
- name: Backup /etc/hosts # delete this after systemd-resolved 261
run: |
sudo cp /etc/hosts /etc/hosts.backup
- name: Edit /etc/hosts # delete this after systemd-resolved 261
run: |
cp /etc/hosts /tmp/ci-hosts
echo "127.0.0.1 httpbin.local" >> /tmp/ci-hosts
echo "127.0.0.1 vey-proxy.local" >> /tmp/ci-hosts
sudo cp /tmp/ci-hosts /etc/hosts
- name: Add static records to systemd-resolved # work only with systemd-resolved >= 261
run: |
sudo mkdir -p /run/systemd/resolve/static.d
sudo cp ${{ github.workspace }}/scripts/coverage/vey-bench/resolved-ci-static.rr /run/systemd/resolve/static.d/
sudo systemctl restart systemd-resolved
resolvectl query httpbin.local vey-proxy.local
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/vey-bench.sh
- name: Restore /etc/hosts # delete this after systemd-resolved 261
run: |
sudo mv /etc/hosts.backup /etc/hosts
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: vey-bench
name: vey-bench-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
vey-statsd-test:
name: vey-statsd test
runs-on: ubuntu-26.04
steps:
- name: Checkout sources
uses: actions/checkout@v7
with:
submodules: true
- name: Install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install capnproto libjemalloc-dev
- name: Install binutils
run: |
cargo install cargo-binutils@0.3.6
- name: Install netcat-openbsd
run: |
sudo apt-get install netcat-openbsd
- name: Install wait4x
run: |
sudo apt-get install wait4x
- name: Cargo clean
run: cargo clean
- name: run unit test
run: |
./scripts/coverage/vey-statsd.sh
- name: Upload coverage data
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
disable_search: true
files: output.lcov
flags: vey-statsd
name: vey-statsd-all-test
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false