diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-11-21 23:24:06 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-12-02 23:24:06 +0100 |
commit | 8b81b170d3b5406e3203e5bd23026d828fd1fa36 (patch) | |
tree | 92cb066f7b5640a42022a0f5ea446bfb8f973afb /.github/workflows/build.yml | |
parent | 2c95b31210ebcc12556d1a30b6df2938fbec879c (diff) |
Updated Github/Gitlab CI
* instrument Clang's thread sanitizer for tests
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c746dc15f..107f6a761 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,15 +29,19 @@ jobs: include: - compiler: "default-cc" os: "ubuntu-latest" + sanitizer: "-DENABLE_SANITIZER=ON" - compiler: "clang-12" os: "ubuntu-latest" + sanitizer: "-DENABLE_SANITIZER_THREAD=ON" - compiler: "gcc-10" os: "ubuntu-latest" + sanitizer: "-DENABLE_SANITIZER=ON" - compiler: "gcc-7" - os: "ubuntu-latest" + os: "ubuntu-18.04" + sanitizer: "-DENABLE_SANITIZER=ON" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Install Ubuntu Prerequisites @@ -62,7 +66,7 @@ jobs: - name: Configure nDPId run: | mkdir build && cd build - cmake .. -DENABLE_SYSTEMD=ON -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DENABLE_SANITIZER=ON ${{ matrix.ndpid_zlib }} ${{ matrix.ndpid_gcrypt }} + cmake .. -DENABLE_SYSTEMD=ON -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON ${{ matrix.sanitizer }} ${{ matrix.ndpid_zlib }} ${{ matrix.ndpid_gcrypt }} - name: Build nDPId run: | make -C build all VERBOSE=1 |