Remove downloading CppUnit and CMake in Travis CI

CppUnit has been replaced by Catch.
The Precise build environment is not used, so no need to download CMake for it.
This commit is contained in:
Maarten Bent
2018-01-25 19:23:53 +01:00
parent 4171f9b808
commit c341d72a92
2 changed files with 0 additions and 8 deletions

View File

@@ -19,7 +19,5 @@ case $(uname -s) in
;; ;;
Darwin) Darwin)
brew update
brew install cppunit --universal
;; ;;
esac esac

View File

@@ -14,12 +14,6 @@ fi
case $wxTOOLSET in case $wxTOOLSET in
cmake) cmake)
if [ `uname -s` = "Linux" ] && [ `lsb_release -cs` = "precise" ]; then
echo Updating CMake...
wget -O - https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz | tar xzf -
export PATH=`pwd`/cmake-3.6.2-Linux-x86_64/bin:$PATH
fi
if [ -z $wxCMAKE_TESTS ]; then wxCMAKE_TESTS=CONSOLE_ONLY; fi if [ -z $wxCMAKE_TESTS ]; then wxCMAKE_TESTS=CONSOLE_ONLY; fi
cmake --version cmake --version
echo 'travis_fold:start:configure' echo 'travis_fold:start:configure'