-
Notifications
You must be signed in to change notification settings - Fork 286
434 lines (359 loc) · 11.5 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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
name: Test
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
on:
push:
pull_request:
types:
- opened
- synchronize
jobs:
cross:
runs-on: ubuntu-22.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
arch:
- armhf
- mipsel
- mingw
container:
image: debian:stable
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install deps
run: HOST=${{ matrix.arch }} sh .ci/deps.sh
- name: Prepare the system
run: HOST=${{ matrix.arch }} sh .ci/test/prepare.sh
- name: Run tests with default settings
run: sudo -u build CI=1 HOST=${{ matrix.arch }} sh .ci/test/run.sh default
- name: Run tests without legacy protocol
run: sudo -u build CI=1 HOST=${{ matrix.arch }} sh .ci/test/run.sh nolegacy
if: always()
- name: Run tests with libgcrypt
run: sudo -u build CI=1 HOST=${{ matrix.arch }} sh .ci/test/run.sh gcrypt
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_cross_${{ matrix.arch }}
path: /tmp/logs/tests.*.tar.gz
if: always()
muon:
runs-on: ubuntu-22.04
timeout-minutes: 20
container:
image: debian:stable-slim
env:
CI: 1
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install dependencies
run: SKIP_OPENSSL3=1 SKIP_MESON=1 .ci/deps.sh libpkgconf-dev
- name: Compatibility with muon
run: ./.ci/muon/run.sh
analysis:
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout tinc
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: sudo SKIP_OPENSSL3=1 .ci/deps.sh autoconf automake iperf3
- name: Compatibility with older versions of tinc
run: sudo ./.ci/compat/run.sh
if: always()
- name: Install tools
run: |
sudo apt-get install -y astyle clang-tidy-$CLANG
sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-$CLANG 100
sudo update-alternatives --install /usr/bin/run-clang-tidy run-clang-tidy /usr/bin/run-clang-tidy-$CLANG 100
curl -OL "https://github.com/koalaman/shellcheck/releases/download/v$SHELLCHECK/shellcheck-v${SHELLCHECK}.linux.x86_64.tar.xz"
tar -C ~ --strip-components=1 --wildcards -xf ./shellcheck-*.tar.xz 'shellcheck-*/shellcheck'
curl -o ~/shfmt -L "https://github.com/mvdan/sh/releases/download/v$SHFMT/shfmt_v${SHFMT}_linux_amd64"
chmod 755 ~/shfmt ~/shellcheck
python3 -m venv /tmp/venv
. /tmp/venv/bin/activate
pip3 install black pylint mypy markflow
env:
CLANG: 11
SHELLCHECK: 0.8.0
SHFMT: 3.5.0
if: always()
- name: Lint/typecheck/check formatting on C/shell/Python code
run: |
. /tmp/venv/bin/activate
PATH=$PATH:$HOME ./lint.py
if: always()
- name: Check warnings (clang)
run: bash .ci/warn/run.sh
env:
CC: clang-12
if: always()
- name: Check warnings (gcc)
run: bash .ci/warn/run.sh
env:
CC: gcc-11
if: always()
- name: Check that very long paths work
run: |
meson setup "$WD"
meson test -C "$WD" --verbose
env:
WD: /tmp/tinc_testing_directory_with_a_very_long_path_which_goes_over_the_108_char_limit_on_unix_socket_file_paths
if: always()
- name: Archive test results
run: sudo tar -caf tests.tar.gz /usr/local/etc
continue-on-error: true
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_compat
path: tests.tar.gz
if: always()
sanitizer:
runs-on: ubuntu-22.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
sanitizer:
- address
- thread
- undefined
env:
SANITIZER: "${{ matrix.sanitizer }}"
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install deps
run: |
sudo sh .ci/deps.sh iputils-arping
sudo pip3 install --upgrade cryptography
- name: Run tests with OpenSSL 3
run: bash .ci/sanitizers/run.sh openssl3
if: always()
- name: Sanitize tests with default settings
run: bash .ci/sanitizers/run.sh default
if: always()
- name: Sanitize tests without legacy protocol
run: bash .ci/sanitizers/run.sh nolegacy
if: always()
- name: Run tests with libgcrypt
run: bash .ci/sanitizers/run.sh gcrypt
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_sanitizer_${{ matrix.sanitizer }}
path: /tmp/logs/tests.*.tar.gz
if: always()
linux:
runs-on: ubuntu-22.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os:
- alpine:latest
- alpine:edge
- almalinux:latest
- fedora:latest
- fedora:rawhide
- debian:oldstable
- debian:stable
- debian:testing
- ubuntu:latest
- ubuntu:rolling
container:
image: ${{ matrix.os }}
options: --privileged
env:
CI: 1
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install deps
run: sh .ci/deps.sh
- name: Assign name for test results artifact
run: echo ARTIFACT="$(echo '${{ matrix.os }}' | sed 's|[:/]|_|g')" >>"$GITHUB_ENV"
- name: Create a non-privileged user
run: sh .ci/test/prepare.sh
- name: Run tests with OpenSSL 3
run: sudo -u build CI=1 sh .ci/test/run.sh openssl3
- name: Run tests with default settings
run: sudo -u build CI=1 sh .ci/test/run.sh default
if: always()
- name: Run tests without legacy protocol
run: sudo -u build CI=1 sh .ci/test/run.sh nolegacy
if: always()
- name: Run tests with libgcrypt
run: sudo -u build CI=1 sh .ci/test/run.sh gcrypt
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_${{ env.ARTIFACT }}
path: /tmp/logs/tests.*.tar.gz
if: always()
- name: Build package
run: sh .ci/package/build.sh
if: github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-')
continue-on-error: true
- name: Upload package
uses: actions/upload-artifact@v2
with:
name: pkg-${{ env.ARTIFACT }}
path: |
*.deb
~/rpmbuild/RPMS/*/*.rpm
continue-on-error: true
pkg-publish:
if: always() && (github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-'))
runs-on: ubuntu-22.04
continue-on-error: true
needs:
- linux
- mingw
steps:
- name: Create artifact directory
run: mkdir -p /tmp/artifacts
- name: Download packages
uses: actions/download-artifact@v2
with:
path: /tmp/artifacts
- name: Publish packages (dev)
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
title: Development release
prerelease: true
files: /tmp/artifacts/**/*.(deb|rpm|exe)
if: startsWith(github.ref, 'refs/heads/')
- name: Publish packages (release)
uses: softprops/action-gh-release@v1
with:
files: |
/tmp/artifacts/**/*.deb
/tmp/artifacts/**/*.rpm
/tmp/artifacts/**/*.exe
if: startsWith(github.ref, 'refs/tags/')
macos:
runs-on: macos-12
timeout-minutes: 20
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install build deps
run: sh .ci/deps.sh
- name: Run tests with default settings
run: sh .ci/test/run.sh default
- name: Run tests without legacy protocol
run: sh .ci/test/run.sh nolegacy
if: always()
- name: Run tests with libgcrypt
run: sh .ci/test/run.sh gcrypt
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_macos
path: /tmp/logs/tests.*.tar.gz
if: always()
mingw:
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Install msys2
uses: msys2/setup-msys2@v2
with:
update: true
# https://packages.msys2.org/package/
install: >-
base-devel
mingw-w64-x86_64-meson
mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-gcc
mingw-w64-x86_64-openssl
mingw-w64-x86_64-libgcrypt
mingw-w64-x86_64-zlib
mingw-w64-x86_64-lzo2
mingw-w64-x86_64-lz4
mingw-w64-x86_64-ncurses
mingw-w64-x86_64-miniupnpc
mingw-w64-x86_64-nsis
git
openbsd-netcat
procps
- name: Checkout code
uses: actions/checkout@v1
- name: Run tests with default settings
shell: msys2 {0}
run: sh .ci/test/run.sh default
- name: Create installer
shell: msys2 {0}
run: sh .ci/package/build.sh
if: github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-')
continue-on-error: true
- name: Upload package
uses: actions/upload-artifact@v2
with:
name: pkg-windows
path: .ci/package/win/tinc-*.exe
continue-on-error: true
- name: Run tests without legacy protocol
shell: msys2 {0}
run: sh .ci/test/run.sh nolegacy
if: always()
- name: Run tests with libgcrypt
shell: msys2 {0}
run: sh .ci/test/run.sh gcrypt
if: always()
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: tests_windows
path: /tmp/logs/tests.*.tar.gz
if: always()
msvc:
runs-on: windows-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
target:
- { build: amd64, host: amd64, test: test }
- { build: amd64, host: x86, test: test }
- { build: amd64, host: arm64, test: notest }
env:
HOST_ARCH: ${{ matrix.target.host }}
BUILD_ARCH: ${{ matrix.target.build }}
steps:
- name: Install meson
run: pip3 install meson
- name: Checkout code
uses: actions/checkout@v1
- name: Activate dev environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.target.build == matrix.target.host && matrix.target.host || format('{0}_{1}', matrix.target.build, matrix.target.host) }}
- name: Build (nolegacy)
run: .ci\windows\build.cmd nolegacy
- name: Test (nolegacy)
run: .ci\windows\test.cmd nolegacy
if: always() && matrix.target.test == 'test'
- name: Build (OpenSSL)
run: .ci\windows\build.cmd openssl
if: always()
- name: Test (OpenSSL)
run: .ci\windows\test.cmd openssl
if: always() && matrix.target.test == 'test'