Skip to content

Commit

Permalink
Add clang tsan github action (#578)
Browse files Browse the repository at this point in the history
* Add clang tsan github action
  • Loading branch information
nchong-at-aws authored and Justin Boswell committed Jan 22, 2020
1 parent 97bd4fd commit b0ea9f3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/clang-tsan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ClangTSan

on: [push]

jobs:
clang-tsan:

runs-on: ubuntu-latest

steps:
- name: Checkout Sources
uses: actions/checkout@v1

- name: Build and test
run: |
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_C_FLAGS="-g" -DENABLE_SANITIZERS=ON -DSANITIZERS=",thread" ..
make
make test

0 comments on commit b0ea9f3

Please sign in to comment.