Update Catch2 for Travis from 2.6.0 to 2.9.1

This commit is contained in:
Dawid Drozd 2019-06-25 19:49:37 +02:00
parent d51be92632
commit b0428e814f

View File

@ -89,8 +89,8 @@ before_install:
- echo ${CC} && ${CC} --version
- echo ${CXX} && ${CXX} --version
# Install catch 2 dependency
- wget https://github.com/catchorg/Catch2/archive/v2.6.0.zip
- unzip v2.6.0.zip && cd Catch2-2.6.0 && mkdir -p build/ && cd build/
- wget https://github.com/catchorg/Catch2/archive/v2.9.1.zip
- unzip v2.9.1.zip && cd Catch2-2.9.1 && mkdir -p build/ && cd build/
- cmake -DCMAKE_BUILD_TYPE=Release .. -DCMAKE_CXX_STANDARD=14 -DCMAKE_INSTALL_PREFIX=~/.local/ && cmake --build . --target install
- cd ../..