From eedcd7fbd68159b6258b9184368056829e45e041 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 27 Dec 2019 04:03:38 +0200 Subject: [PATCH] cd into the right directory on Appveyor --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 8fc11df..a6c827e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -63,7 +63,7 @@ test_script: - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C MinSizeRel - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C RelWithDebInfo - - if not "%CMAKE_SUBDIR%" == "" cd test/cmake_subdir_test && mkdir __build__ && cd __build__ + - if not "%CMAKE_SUBDIR%" == "" cd libs/assert/test/cmake_subdir_test && mkdir __build__ && cd __build__ - if not "%CMAKE_SUBDIR%" == "" cmake .. - if not "%CMAKE_SUBDIR%" == "" cmake --build . --config Debug && cmake --build . --target check --config Debug - if not "%CMAKE_SUBDIR%" == "" cmake --build . --config Release && cmake --build . --target check --config Release