Skip to content
This repository has been archived by the owner on Jan 2, 2021. It is now read-only.

Commit

Permalink
Enable builds with asan on Travis
Browse files Browse the repository at this point in the history
This should prevent checking in some code with memory errors.
  • Loading branch information
sas committed Oct 3, 2016
1 parent ac63cf4 commit 5ea53b0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ project := project
cmake := cmake
cmake_flags := -DCMAKE_INSTALL_PREFIX=

ifeq ($(CI),true)
cmake_flags += -DSANITIZER=asan
endif

ninja := $(if $(shell which llbuild),llbuild ninja build,ninja)
ninja_flags := $(if $(shell echo "$$NINJA_JOBS"),-j$(shell echo "$$NINJA_JOBS"),)

Expand Down

0 comments on commit 5ea53b0

Please sign in to comment.