diff options
| -rw-r--r-- | .travis.yml | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/.travis.yml b/.travis.yml index fc5a387..eae7f43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,7 @@ before_install:        - pip install --user cpp-coveralls  before_script:  +  - ulimit -c unlimited -s    - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y    - sudo apt-get update -y    - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - @@ -34,6 +35,9 @@ before_script:  script: make CXX=clang-4.0 LLVM_CONF=llvm-config-4.0 BUILD_MODE=COV_NO_CLANG -j2 +after_failure: +  - find . -maxdepth 1 -name "core*" +  after_success:    - llvm-config-4.0 --has-rtti    - gcc -v @@ -51,3 +55,4 @@ after_success:    - gcc -E - <<< '#include<assert.h>'    - ls    - ulimit -a +  - find . -maxdepth 1 -name "core*" | 
