1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-24 04:43:49 +00:00

Update Windows CI script to download a version of Google Test that can actually compile the tests

This commit is contained in:
Evil Eye 2020-06-27 15:30:28 +02:00
parent 355996c2ff
commit fcc761c13c

View File

@ -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