From 73c3417aa7bb94a8016fb2e7531b512aa227f71c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sat, 16 Jul 2016 16:15:16 +0200 Subject: [PATCH] Try to clone googletest on AppVeyor again --- appveyor.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 08ae6b1..2402119 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,25 +4,23 @@ version: "{build}" # scripts that run after cloning repository -# NOTE : not updating submodule as cloning googletest does not work on AppVeyor install: -# - git submodule update --init googletest + - git submodule update --init googletest # configurations to add to build matrix # TODO: VS2010->VS2015 and Win32/Win64 (see https://github.com/google/googletest/blob/master/appveyor.yml) # TODO: MinGW Makefiles and MSYS Makefiles configuration: - Debug -# - Release # CMake can only build the default configuration on Visual Studio +# - Release # CMake can only build the default configuration on Visual Studio # scripts to run before build -# NOTE : no unit tests as cloning googletest does not work on AppVeyor before_build: - mkdir build - cd build - - cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=OFF -DSQLITECPP_RUN_CPPCHECK=OFF .. + - cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF .. # build examples, and run tests (ie make & make test) build_script: - cmake --build . -# - ctest --output-on-failure + - ctest --output-on-failure