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

.travis.yml: Enable ASAN #26

Merged
merged 1 commit into from
Aug 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
language: c

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

install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y
- export PATH=$PATH:~/.cargo/bin
Expand All @@ -14,20 +17,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