diff options
author | Alec Thomas <alec@swapoff.org> | 2013-04-01 11:51:29 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-04-02 17:50:58 -0400 |
commit | 947d29aa374b9b5f5c581120ce5a4e7a32d0c981 (patch) | |
tree | 9a22cf41b4db463ff17e964fe36e78e3219d46d9 /.travis.yml | |
parent | e569dc47c9ff3c3118cb96427d3ec9a6aced98aa (diff) |
Allow shared_ptr implementation to be selected.
Fixes #6.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e7ac9b8..1f5acba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: cpp compiler: - clang - gcc +env: + - USE_STD_SHARED_PTR=1 + - USE_STD_SHARED_PTR=0 before_install: - sudo apt-add-repository -y ppa:jkeiren/ppa - if test $CC = gcc; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi @@ -14,4 +17,4 @@ before_install: - if test $CC = gcc; then sudo update-alternatives --config gcc; fi - if test $CC = gcc; then sudo update-alternatives --config g++; fi -script: cmake -DBUILD_TESTING=1 && make && make test +script: ./scripts/travis.sh |