Files
wget2/.travis.sh
Tim Rühsen c1bcbcc623 Disable valgrind tests on Travis CI for Mac OS X
* .travis.yml: Do not install valgrind in OS X
* .travis.sh: Disable valgrind tests for OS X
2016-01-24 20:04:21 +01:00

21 lines
375 B
Bash
Executable File

#!/bin/bash
./autogen.sh || exit 1
./configure || exit 1
make -j3 || exit 1
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
make install || exit 1
else
export VALGRIND_TESTS=1
fi
make check -j3
#if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
# cat tests/test.log
# ls -la tests/.test_*
# for log in tests/*.log; do
# echo -e "\n#### $log ####"
# cat $log
# done
#fi
make distcheck