summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2021-03-29 21:46:45 +0200
committerSebastian Pipping <sebastian@pipping.org>2021-03-29 21:49:23 +0200
commitef6d537b19bf06ec9b4330557ea3b942b3ce21cc (patch)
tree51325014203079ce73f9c84969e9af1ea0e6a443
parent1476b02bafa41abcdcac7d751cb7fe869a2876ea (diff)
downloaduriparser-googletest-issue-3331-use-code-from-master.tar.gz
REVERT ME: Use googletest from Git mastergoogletest-issue-3331-use-code-from-master
-rw-r--r--appveyor.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index c297f7b..48a7e75 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -41,6 +41,7 @@ configuration:
# - Release
environment:
+ # NOTE: We are actually using googletest Git master, the version is cosmetic
GTEST_VERSION: 1.10.0
# https://www.appveyor.com/docs/windows-images-software/
@@ -56,8 +57,9 @@ environment:
COMMON_CMAKE_ARGS: -A x64
before_build:
- - curl -fsSL -o release-%GTEST_VERSION%.zip https://github.com/google/googletest/archive/release-%GTEST_VERSION%.zip
+ - curl -fsSL -o release-%GTEST_VERSION%.zip https://github.com/google/googletest/archive/refs/heads/master.zip
- unzip -q release-%GTEST_VERSION%.zip
+ - mv googletest-master googletest-release-%GTEST_VERSION%
- cd googletest-release-%GTEST_VERSION%
- cmake
-G "%CMAKE_GENERATOR%"