From d14d26717d90a3eae57952efbf719dcc00ccc5d9 Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Thu, 13 Feb 2020 22:53:02 +0100 Subject: [PATCH] Disable bytecode uploads for appveyor PR builds. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 2e2a2fa8b..4b66e027e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,7 +71,7 @@ test_script: - soltest.exe --show-progress -- --testpath %APPVEYOR_BUILD_FOLDER%\test --no-smt # Skip bytecode compare if private key is not available - cd %APPVEYOR_BUILD_FOLDER% - - ps: if ($env:priv_key) { + - ps: if ($env:priv_key -and -not $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) { scripts\bytecodecompare\storebytecode.bat $Env:CONFIGURATION $bytecodedir } - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION%