forked from baresip/baresip
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (44 loc) · 1.32 KB
/
sanitizers.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
name: Sanitizers
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
sanitizers:
runs-on: ubuntu-latest
strategy:
matrix:
sanitizer: [thread, address, undefined]
env:
CC: clang
CMAKE_GENERATOR: Ninja
CXXFLAGS: "-fsanitize=${{ matrix.sanitizer }} -fno-sanitize-recover"
CFLAGS: "-fsanitize=${{ matrix.sanitizer }} -fno-sanitize-recover"
ASAN_OPTIONS: fast_unwind_on_malloc=0
steps:
- uses: actions/checkout@v3
- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
run: |
sudo sed -i 's/azure\./de\./' /etc/apt/sources.list
- name: install packages
run: |
sudo apt-get update && sudo apt-get install -y libssl-dev ninja-build
- name: checkout
run: |
br=$(git branch --show-current)
git clone --branch "$br" https://github.com/cspiel1/re
- name: make re
run: |
cmake -S re -B re/build -DHAVE_THREADS=
cmake --build re/build -j
mv re ../.
- name: ldconfig
run: sudo ldconfig
- name: make baresip selftest
run: cmake -B build -DHAVE_THREADS= -DSTATIC=1 -DMODULES="g711;ausine;fakevideo;auconv;dtls_srtp;srtp;aufile" && cmake --build build -j
- name: run selftest
run: ./build/test/selftest