summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2022-08-19 10:23:20 +0300
committerIvan Maidanski <ivmai@mail.ru>2022-08-19 10:23:20 +0300
commitc0ee53edd66373f85f4461368c0ba0340da446fa (patch)
tree9b541e2f0686c6ccad500646bd96d992cfa1df9e
parent0b677ae93c4084eefae60d77f7b89432abbaae07 (diff)
downloadlibatomic_ops-c0ee53edd66373f85f4461368c0ba0340da446fa.tar.gz
AppVeyor CI: Remove 'cd' command before 'ctest' one
(fix of commit 516bd619c)
-rw-r--r--.appveyor.yml2
1 files changed, 1 insertions, 1 deletions
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%" )