mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2025-08-16 17:37:56 +00:00

* .travis.yml: Do not install valgrind in OS X * .travis.sh: Disable valgrind tests for OS X
21 lines
375 B
Bash
Executable File
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
|