From 8f66156aa35e952c87795e7b537128afcc023381 Mon Sep 17 00:00:00 2001 From: somdoron Date: Wed, 12 Jun 2019 16:11:32 +0300 Subject: [PATCH] problem: tests might fail and prevent deployment Solution: don't run tests on tags This doesn't break anything, as tags was not built until now. Anyway, when building tags we really care about the release of the packages and not tests --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 0e4ea433..d8d5870b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -210,7 +210,7 @@ test_script: echo "Running tests in parallel" && set TEST_OPTIONS=%TEST_OPTIONS% -j5 ) - - cmd: ctest -C "%Configuration%" -V %TEST_OPTIONS% + - cmd: if "%APPVEYOR_REPO_TAG%"=="false" (ctest -C "%Configuration%" -V %TEST_OPTIONS%) deploy: - provider: BinTray