zhangmeng
2022-01-20 bef24e7b4001c7c7cd7a03a22f8eaf7c8af3c4b7
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
name: sanitize
on: [push, pull_request]
jobs:
  sanitize:
    env:
      CC: clang
      CXX: clang++
      CTEST_OUTPUT_ON_FAILURE: 1
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        sanitizer: [ address, undefined, thread ]
        os: [ ubuntu-latest ]
 
    steps:
      - uses: actions/checkout@v1
 
      - uses: mstksg/get-package@v1
        with:
            apt-get: ninja-build libmbedtls-dev
            brew: ninja mbedtls
 
      - name: Configure
        run: |
          mkdir build
          cd build
          cmake -G Ninja -DNNG_SANITIZER=${{ matrix.sanitizer }} -DCMAKE_BUILD_TYPE=Debug -DNNG_ENABLE_TLS=ON -DNNG_TOOLS=OFF ..
      - name: Build
        run: |
          cd build
          ninja
      - name: Test
        run: |
          cd build
          ninja test