Hash :
03fe6d29
Author :
Date :
2022-11-08T18:00:23
Update checkout action to current version. checkout v2 uses node.js v12 which is has been recently deprecated by github so switch to using the one on the main branch.
name: linux_ci_asan
on: [push, pull_request]
jobs:
build-native:
strategy:
matrix:
os: [ubuntu-latest]
compiler: [clang]
runs-on: ${{ matrix.os }}
continue-on-error: false
env:
CC: ${{ matrix.compiler }}
ARCH: native
CFLAGS: "-ggdb -fsanitize=address"
LDFLAGS: "-fsanitize=address"
CTEST_OUTPUT_ON_FAILURE: 1
name: ${{ matrix.compiler }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@main
- name: Run CI script
run: ./scripts/test