Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Commit

Permalink
.travis.yml: Enable ASAN
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Aug 14, 2018
1 parent 4c3fdc5 commit 5fe4057
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
language: c
sudo: required

env:
- XCFLAGS="-g -fsanitize=address" XLDFLAGS=-fsanitize=address ASAN_OPTIONS=detect_leaks=0

install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y
Expand All @@ -14,20 +18,17 @@ compiler:

matrix:
fast_finish: true
allow_failures:
# TODO: determine why clang build of "ristretto_gen_tables" SEGVs sporadically
# https://github.com/Ristretto/libristretto255/issues/24
- os: linux
compiler: clang
include:
# TODO: test (instead of just build) on OS X
# https://github.com/Ristretto/libristretto255/issues/19
- os: osx
compiler: clang
env: []
install: ""
script: make
- os: osx
compiler: gcc
env: []
install: ""
script: make

Expand Down

0 comments on commit 5fe4057

Please sign in to comment.