-
Notifications
You must be signed in to change notification settings - Fork 945
566 lines (553 loc) · 23.1 KB
/
ci-linux.yml
File metadata and controls
566 lines (553 loc) · 23.1 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
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
name: CI Ubuntu
on:
push:
branches:
- 'master'
pull_request:
types: [opened, synchronize, reopened]
env:
CI_ARGS: -w 3 --shuffle --stdout-buf 1
CI_MODE: --ci-mode
# Setting CI_RUNNER to empty should disable cirunner
CI_RUNNER: python ${{ github.workspace }}/cirunner/cirunner.py -t 3600 -o ${{ github.workspace }}/artifacts --
MAKE_FAST: make -j 3
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
# Aggregate dependency groups — each combines the raw path filters
# relevant to a set of test jobs, so per-job conditions are one-liners.
pjlib_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjnath_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjnath == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjmedia_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjmedia == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjsip_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjsip == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjmedia_pjsip_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjmedia == 'true' || steps.filter.outputs.pjsip == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjnath_pjmedia_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjnath == 'true' || steps.filter.outputs.pjmedia == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
pjnath_pjsip_deps: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjnath == 'true' || steps.filter.outputs.pjsip == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
any_src: ${{ steps.filter.outputs.core == 'true' || steps.filter.outputs.pjlib_util == 'true' || steps.filter.outputs.pjnath == 'true' || steps.filter.outputs.pjmedia == 'true' || steps.filter.outputs.pjsip == 'true' || steps.filter.outputs.pjsip_apps == 'true' || steps.filter.outputs.tests == 'true' || steps.filter.outputs.ci == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
core:
- 'pjlib/**'
- 'build/**'
- 'configure*'
- 'aconfigure*'
- 'Makefile'
- '*.mak*'
- 'third_party/**'
pjlib_util:
- 'pjlib-util/**'
pjnath:
- 'pjnath/**'
pjmedia:
- 'pjmedia/**'
pjsip:
- 'pjsip/**'
pjsip_apps:
- 'pjsip-apps/**'
tests:
- 'tests/**'
ci:
- '.github/**'
default-build:
# checking pure lib source distribution with plain configure & make
runs-on: ubuntu-latest
name: Default / build only
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: config site
run: echo -e "#define PJ_TODO(x)\n" > pjlib/include/pj/config_site.h
- name: configure
run: ./configure CFLAGS="-std=gnu89 -Werror=declaration-after-statement"
- name: make
run: $MAKE_FAST
- name: get SSL info
run: pjlib/bin/pjlib-test-`make infotarget` --config --list | grep SSL
- name: verify oepnssl is used
run: pjlib/bin/pjlib-test-`make infotarget` --config --list | grep -E 'PJ_SSL_SOCK_IMP\s+:\s+1'
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
default-full-bundle-1:
# full bundle: enable all codecs + AEC + DTLS
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.any_src == 'true'
runs-on: ubuntu-latest
name: Default / pjsua
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y swig sip-tester libopencore-amrnb-dev
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h
- name: configure
run: CFLAGS="-g -fPIC -fsanitize=address" CXXFLAGS="-g -fPIC -fsanitize=address" LDFLAGS="-rdynamic -fsanitize=address" ./configure --enable-libwebrtc-aec3
- name: make
run: $MAKE_FAST
- name: swig bindings
run: cd pjsip-apps/src/swig && make
- name: set up Python 3.10 for pjsua test
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install PESQ and Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install numpy cython
python -m pip install pesq scipy
- name: Download and Unzip Visqol
run: |
curl -L "https://github.com/pjsip/third_party_libs/raw/main/visqol_ubuntu.zip" -o visqol.zip
unzip -o visqol.zip -d tests/pjsua/tools
chmod +x tests/pjsua/tools/visqol
- name: capture pjsua capabilities
run: |
cat << EOF | pjsip-apps/bin/pjsua-`make infotarget` --log-level 3 > pjsua-caps
Cp
xx
vid dev list
vid codec list
q
EOF
cat pjsua-caps
- name: ensure AMR codec is installed
run: cat pjsua-caps | grep -E 'AMR/8000'
- name: pjsua-test
run: make pjsua-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
default-full-bundle-2:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjnath_deps == 'true'
runs-on: ubuntu-latest
name: Default / pjlib,util,pjnath
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get install -y libopencore-amrnb-dev
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h
- name: configure
run: CFLAGS="-g -fsanitize=address" CXXFLAGS="-fsanitize=address" LDFLAGS="-rdynamic -fsanitize=address" ./configure
- name: make
run: $MAKE_FAST
- name: pjlib-test
run: |
export LSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/lsan.supp"
make pjlib-test
- name: pjlib-util-test
run: make pjlib-util-test
- name: pjnath-test
run: make pjnath-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
default-full-bundle-3:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjmedia_pjsip_deps == 'true'
runs-on: ubuntu-latest
name: Default / pjmedia,pjsip
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get install -y libopencore-amrnb-dev
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h
- name: configure
run: CFLAGS="-g -fsanitize=address" CXXFLAGS="-fsanitize=address" LDFLAGS="-rdynamic -fsanitize=address" ./configure --enable-libwebrtc-aec3
- name: make
run: $MAKE_FAST
- name: pjmedia-test
run: make pjmedia-test
- name: pjsip-test
run: make pjsip-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
no-tls:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjsip_deps == 'true'
runs-on: ubuntu-latest
name: No SSL / pjlib,pjsip
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get install -y swig
- name: config site
run: echo -e "#define PJ_TODO(x)\n" > pjlib/include/pj/config_site.h
- name: configure
run: CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-ssl
- name: make
run: $MAKE_FAST
- name: swig bindings
run: cd pjsip-apps/src/swig && make
- name: pjlib-test
run: make pjlib-test
- name: pjsip-test
run: make pjsip-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
# build-ubuntu-openssl
# TLS: with OpenSSL (same as build-ubuntu-default)
gnu-tls:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjnath_pjsip_deps == 'true'
runs-on: ubuntu-latest
name: GnuTLS / pjlib,pjnath,pjsip
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y --fix-missing swig libgnutls28-dev
- name: config site
run: echo -e "#define PJ_TODO(x)\n" > pjlib/include/pj/config_site.h
- name: configure
run: CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --with-gnutls=/usr/
- name: make
run: $MAKE_FAST
- name: swig bindings
run: cd pjsip-apps/src/swig && make
- name: get SSL info
run: pjlib/bin/pjlib-test-`make infotarget` --config --list | grep SSL
- name: verify gnu tls is used
run: pjlib/bin/pjlib-test-`make infotarget` --config --list | grep -E 'PJ_SSL_SOCK_IMP\s+:\s+2'
- name: pjlib-test
run: make pjlib-test
- name: pjnath-test
run: make pjnath-test
- name: pjsip-test
run: make pjsip-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
vid-openh264-1:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.any_src == 'true'
runs-on: ubuntu-latest
name: OpenH264+VPX / pjsua
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y swig nasm sip-tester libvpx-dev libopencore-amrnb-dev libsdl2-dev
- name: get openh264
run: git clone --depth 1 --single-branch --branch openh264v2.1.0 https://github.com/cisco/openh264.git
- name: build openh264
run: cd openh264 && $MAKE_FAST && sudo make install && sudo ldconfig
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h && echo "#define PJMEDIA_HAS_VIDEO 1" >> config_site.h
- name: configure
run: CFLAGS="-g -fPIC -DHAS_VID_CODEC_TEST=0 -fsanitize=thread" CXXFLAGS="-g -fPIC -fsanitize=thread" LDFLAGS="-rdynamic -fsanitize=thread" ./configure
- name: make
run: $MAKE_FAST
- name: swig bindings
run: cd pjsip-apps/src/swig && make
- name: set up Python 3.10 for pjsua test
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install PESQ and Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install numpy cython
python -m pip install pesq scipy
- name: Download and Unzip Visqol
run: |
curl -L "https://github.com/pjsip/third_party_libs/raw/main/visqol_ubuntu.zip" -o visqol.zip
unzip -o visqol.zip -d tests/pjsua/tools
chmod +x tests/pjsua/tools/visqol
- name: capture pjsua capabilities
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
cat << EOF | pjsip-apps/bin/pjsua-`make infotarget` --log-level 3 > pjsua-caps
Cp
xx
vid dev list
vid codec list
q
EOF
cat pjsua-caps
- name: ensure AMR codec is installed
run: cat pjsua-caps | grep -E 'AMR/8000'
- name: ensure H264 codec is installed
run: cat pjsua-caps | grep -E 'H264/'
- name: ensure VP8 codec is installed
run: cat pjsua-caps | grep -E 'VP8/'
# SDL error: no available vid dev
#- name: ensure SDL is installed
# run: cat pjsua-caps | grep -E '\[SDL\]\[render\]'
# one of the step above has changed core_pattern, restore it
- name: reinstall cirunner
run: cirunner/installlinux.sh
- name: pjsua-test
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjsua-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
vid-openh264-2:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjnath_deps == 'true'
runs-on: ubuntu-latest
name: OpenH264+VPX / pjlib,util,pjnath
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y nasm libvpx-dev libopencore-amrnb-dev libsdl2-dev
- name: get openh264
run: git clone --depth 1 --single-branch --branch openh264v2.1.0 https://github.com/cisco/openh264.git
- name: build openh264
run: cd openh264 && $MAKE_FAST && sudo make install && sudo ldconfig
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h && echo "#define PJMEDIA_HAS_VIDEO 1" >> config_site.h
- name: configure
run: CFLAGS="-g -fsanitize=thread" CXXFLAGS="-g -fsanitize=thread" LDFLAGS="-rdynamic -fsanitize=thread" ./configure
- name: make
run: $MAKE_FAST
# one of the step above has changed core_pattern, restore it
- name: reinstall cirunner
run: cirunner/installlinux.sh
- name: pjlib-test
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjlib-test
- name: pjlib-util-test
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjlib-util-test
- name: pjnath-test
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjnath-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
vid-openh264-3:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjmedia_pjsip_deps == 'true'
runs-on: ubuntu-latest
name: OpenH264+VPX / pjmedia,pjsip
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y nasm libvpx-dev libopencore-amrnb-dev libsdl2-dev
- name: get openh264
run: git clone --depth 1 --single-branch --branch openh264v2.1.0 https://github.com/cisco/openh264.git
- name: build openh264
run: cd openh264 && $MAKE_FAST && sudo make install && sudo ldconfig
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h && echo "#define PJMEDIA_HAS_VIDEO 1" >> config_site.h
- name: configure
run: CFLAGS="-g -DHAS_VID_CODEC_TEST=0 -fsanitize=thread" CXXFLAGS="-g -fsanitize=thread" LDFLAGS="-rdynamic -fsanitize=thread" ./configure
- name: make
run: $MAKE_FAST
# one of the step above has changed core_pattern, restore it
- name: reinstall cirunner
run: cirunner/installlinux.sh
- name: pjmedia-test
run: |
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjmedia-test
- name: pjsip-test serial
# when using no worker thread, pjsip_endpt is safe without suppression
run: |
export CI_ARGS="-w 0 --shuffle --stdout-buf 1 tsx_basic_test tsx_uac_test tsx_uas_test"
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjsip-test
- name: pjsip-test parallel
# when using multiple worker threads, add pjsip_endpt suppression
run: |
echo "deadlock:pj_rwmutex_lock_read" >> tests/sanitizers/tsan.supp
export TSAN_OPTIONS="suppressions=$GITHUB_WORKSPACE/tests/sanitizers/tsan.supp"
make pjsip-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
vid-ffmpeg:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.pjmedia_deps == 'true'
runs-on: ubuntu-latest
name: FFMPEG+x264 / pjmedia
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y swig nasm libx264-dev libvpx-dev libsdl2-dev
- name: get ffmpeg
run: git clone --depth 1 --single-branch --branch release/4.2 https://github.com/FFmpeg/FFmpeg.git
- name: configure ffmpeg
run: cd FFmpeg && ./configure --enable-shared --disable-static --enable-gpl --enable-libx264
- name: build ffmpeg
run: cd FFmpeg && $MAKE_FAST && sudo make install
- name: config site
run: echo -e "#define PJ_TODO(x)\n#define PJMEDIA_HAS_VIDEO 1\n" > pjlib/include/pj/config_site.h
- name: configure
run: CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure
- name: make
run: $MAKE_FAST
- name: swig bindings
run: cd pjsip-apps/src/swig && make
- name: capture pjsua capabilities
run: |
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
cat << EOF | pjsip-apps/bin/pjsua-`make infotarget` --log-level 3 > pjsua-caps
Cp
xx
vid dev list
vid codec list
q
EOF
cat pjsua-caps
- name: ensure H264 codec is installed
run: cat pjsua-caps | grep -E 'H264/'
- name: ensure VP8 codec is installed
run: cat pjsua-caps | grep -E 'VP8/'
# SDL error: no available vid dev
#- name: ensure SDL is installed
# run: cat pjsua-caps | grep -E '\[SDL\]\[render\]'
# one of the step above has changed core_pattern, restore it
- name: reinstall cirunner
run: cirunner/installlinux.sh
- name: pjmedia-test
run: export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH && make pjmedia-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
ioq-epoll-cb-with-lock-conf-thread:
needs: [detect-changes]
if: github.event_name == 'push' || needs.detect-changes.outputs.any_src == 'true'
runs-on: ubuntu-latest
name: ioq-epoll-cb-with-lock-conf-thread / pjlib,pjsua
steps:
- uses: actions/checkout@v2
- name: install cirunner
run: |
git clone --depth 1 https://github.com/pjsip/cirunner.git
cirunner/installlinux.sh
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y swig sip-tester libopencore-amrnb-dev
- name: config site
run: cd pjlib/include/pj && cp config_site_test.h config_site.h && echo -e "#define PJ_IOQUEUE_CALLBACK_NO_LOCK 0\n#define PJMEDIA_CONF_BACKEND PJMEDIA_CONF_PARALLEL_BRIDGE_BACKEND\n#define PJMEDIA_CONF_THREADS 4" >> config_site.h
- name: configure
run: CFLAGS="-g -fPIC" CXXFLAGS="-g -fPIC" LDFLAGS="-rdynamic" ./configure --enable-epoll
- name: make
run: $MAKE_FAST
- name: pjlib-test
run: cd pjlib/build && ../bin/pjlib-test-`make -s -C ../.. infotarget` $CI_MODE $CI_ARGS udp_ioqueue_test tcp_ioqueue_test ioqueue_stress_test udp_ioqueue_unreg_test ioqueue_perf_test0 ioqueue_perf_test1 activesock_test ssl_sock_test iocp_unregister_test
- name: pjsip-test
run: cd pjsip/build && ../bin/pjsip-test-`make -s -C ../.. infotarget` $CI_ARGS resolve_test inv_offer_answer_test transport_udp_test transport_tcp_test regc_test tsx_destroy_test
- name: set up Python 3.10 for pjsua test
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install PESQ and Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install numpy cython
python -m pip install pesq scipy
- name: Download and Unzip Visqol
run: |
curl -L "https://github.com/pjsip/third_party_libs/raw/main/visqol_ubuntu.zip" -o visqol.zip
unzip -o visqol.zip -d tests/pjsua/tools
chmod +x tests/pjsua/tools/visqol
- name: pjsua-test
run: make pjsua-test
- name: upload artifacts on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-${{ runner.arch }}-${{ github.job }}-${{ github.run_id }}
path: artifacts
cmake-build:
runs-on: ubuntu-latest
name: CMake / ${{ matrix.build_type }}
strategy:
fail-fast: false
matrix:
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y libssl-dev
- name: configure
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: build
run: cmake --build build -j $(nproc)
- name: check
run: |
file build/pjsip-apps/pjsua
ldd build/pjsip-apps/pjsua