We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c24b3 commit 1462c19Copy full SHA for 1462c19
.github/workflows/linux.yml
@@ -117,6 +117,24 @@ jobs:
117
run: |
118
cd build
119
./test/run_tests "~[quality]"
120
+ build-clang13-asan:
121
+ runs-on: ubuntu-latest
122
+ name: Clang 13 + ASAN
123
+
124
+ steps:
125
+ - uses: actions/checkout@v1
126
+ with:
127
+ submodules: true
128
+ - name: Build mockturtle with ASAN
129
+ run: |
130
+ mkdir build
131
+ cd build
132
+ cmake -DCMAKE_CXX_COMPILER=clang++-13 -DENABLE_ASAN=ON -DMOCKTURTLE_TEST=ON ..
133
+ make run_tests
134
+ - name: Run tests with ASAN
135
136
137
+ ./test/run_tests "~[quality]"
138
compile-gcc9:
139
runs-on: ubuntu-latest
140
name: Compile everything (GCC 9)
0 commit comments