Add Address Sanitized build type

- Add -DCMAKE_BUILD_TYPE=ASAN to possible builds
This commit is contained in:
Dan Robertson 2017-10-26 14:07:36 +00:00 committed by Dan Robertson
parent d75ee3f9ce
commit 3d209be3d6
No known key found for this signature in database
GPG key ID: 45C4A652C47E42A5
2 changed files with 17 additions and 1 deletions

View file

@ -6,6 +6,11 @@ compiler:
- gcc
- clang
env:
- BUILD_TYPE=Release
- BUILD_TYPE=Debug
- BUILD_TYPE=ASAN
arch:
packages:
- cmake
@ -19,7 +24,7 @@ arch:
- wlc-git
- libcap
script:
- "cmake ."
- "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ."
- "make"
script: