From c0ee53edd66373f85f4461368c0ba0340da446fa Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 19 Aug 2022 10:23:20 +0300 Subject: AppVeyor CI: Remove 'cd' command before 'ctest' one (fix of commit 516bd619c) --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index d3fb61d..fae21e5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -57,7 +57,7 @@ build_script: && cd src && nmake -f Makefile.msft clean all CFLAGS_EXTRA="/WX %CFLAGS_EXTRA%" && cd .. ) test_script: -- cmd: if [%TARGET%]==[cmake] ( cd out && ctest --build-config %CMAKE_CONFIG% -j4 -V ) +- cmd: if [%TARGET%]==[cmake] ( ctest --build-config %CMAKE_CONFIG% -j4 -V ) - cmd: if [%TARGET%]==[nmake] ( "C:\Program Files (x86)\Microsoft Visual %STUDIO_VERSION_EDITION%\VC\Auxiliary\Build\vcvarsall.bat" %ARCH% %PLATFORM_TYPE% %WINSDK_VERSION% && cd src && nmake -f Makefile.msft %TEST_TARGET% CFLAGS_EXTRA="/WX %CFLAGS_EXTRA%" ) -- cgit v1.2.1