From fcc761c13c3c4c25dbc58cb321534d486c2ca465 Mon Sep 17 00:00:00 2001 From: Evil Eye Date: Sat, 27 Jun 2020 15:30:28 +0200 Subject: [PATCH] Update Windows CI script to download a version of Google Test that can actually compile the tests --- CI/before_script.msvc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index a9f6bd81fe..9a213963e8 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -504,11 +504,11 @@ if [ -z $SKIP_DOWNLOAD ]; then # Google test and mock if [ ! -z $TEST_FRAMEWORK ]; then - echo "Google test 1.8.1..." + echo "Google test 1.10.0..." if [ -d googletest ]; then printf " Google test exists, skipping." else - git clone -b release-1.8.1 https://github.com/google/googletest.git + git clone -b release-1.10.0 https://github.com/google/googletest.git fi fi fi @@ -820,7 +820,7 @@ cd $DEPS echo # Google Test and Google Mock if [ ! -z $TEST_FRAMEWORK ]; then - printf "Google test 1.8.1 ..." + printf "Google test 1.10.0 ..." cd googletest if [ ! -d build ]; then