Update catch version for travis

This commit is contained in:
Dawid Drozd 2018-09-06 21:05:54 +02:00
parent 3c282b5139
commit 52d85fcfea

View File

@ -39,8 +39,8 @@ matrix:
before_install:
# Install catch 2 dependency
- wget https://github.com/catchorg/Catch2/archive/v2.2.3.zip
- unzip v2.2.3.zip && cd Catch2-2.2.3 && mkdir -p build/ && cd build/
- wget https://github.com/catchorg/Catch2/archive/v2.3.0.zip
- unzip v2.3.0.zip && cd Catch2-2.3.0 && mkdir -p build/ && cd build/
- cmake -DCMAKE_BUILD_TYPE=Release .. -DCMAKE_INSTALL_PREFIX=~/.local/ && cmake --build . --target install
- cd ../..