aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-10-27 08:46:29 -0400
committerLibravatar GitHub <noreply@github.com>2017-10-27 08:46:29 -0400
commitc57f68566a52d12f0fbfdfcfcfbf76aad861eb24 (patch)
tree52452b66a97098bb1d879c45d71ac514105ca1d2 /.travis.yml
parentMerge pull request #1438 from mariusor/explicit_json-c_version (diff)
parentAdd Address Sanitized build type (diff)
downloadsway-c57f68566a52d12f0fbfdfcfcfbf76aad861eb24.tar.gz
sway-c57f68566a52d12f0fbfdfcfcfbf76aad861eb24.tar.zst
sway-c57f68566a52d12f0fbfdfcfcfbf76aad861eb24.zip
Merge pull request #1436 from dlrobertson/add_asan_build
Add Address Sanitized build type
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 69634765..3eeb1682 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,11 @@ compiler:
6 - gcc 6 - gcc
7 - clang 7 - clang
8 8
9env:
10 - BUILD_TYPE=Release
11 - BUILD_TYPE=Debug
12 - BUILD_TYPE=ASAN
13
9arch: 14arch:
10 packages: 15 packages:
11 - cmake 16 - cmake
@@ -19,7 +24,7 @@ arch:
19 - wlc-git 24 - wlc-git
20 - libcap 25 - libcap
21 script: 26 script:
22 - "cmake ." 27 - "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ."
23 - "make" 28 - "make"
24 29
25script: 30script: