From 4059a67b1d791ac4f744baca246b57dc546310df Mon Sep 17 00:00:00 2001 From: Samuel Hopstock Date: Mon, 23 Sep 2019 23:00:16 +0200 Subject: [PATCH] Only publish windows dist for tags --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 3f0bc68d63..a9cffbaa04 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -38,7 +38,7 @@ install: build_script: - if defined BASH (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER}) && make") - if "%MSYSTEM%" == "MINGW64" (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER}) && make -C bindings/go") - - if defined MSYSTEM (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER})/bindings/python && make bdist3") + - if "%APPVEYOR_REPO_TAG%" == "true" (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER})/bindings/python && make bdist3") - if "%CC%" == "msvc" (msbuild %APPVEYOR_BUILD_FOLDER%/msvc/unicorn.sln) # make test #- 'cd %APPVEYOR_BUILD_FOLDER% && cd bindings\dotnet && msbuild UnicornDotNet.sln'