aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux_test_asan_noasm.yml
blob: 92ab2fccaf504eb3d147447f17e9a037dd35f906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: linux_ci_asan_noasm

on: [push, pull_request]

jobs:
  build-native:
    name: "${{ matrix.compiler }} - ${{ matrix.os }}"
    runs-on: "${{ matrix.os }}"
    strategy:
      matrix:
        os: ["ubuntu-latest"]
        compiler: ["clang"]
    env:
      CC: "${{ matrix.compiler }}"
      ARCH: native
      CFLAGS: "-ggdb -fsanitize=address"
      LDFLAGS: "-fsanitize=address"
      CTEST_OUTPUT_ON_FAILURE: 1
      ENABLE_ASM: OFF
    steps:
      - name: "Checkout repository"
        uses: actions/checkout@main
      - name: "Run tests"
        run: ./scripts/test