diff options
author | chriseth <chris@ethereum.org> | 2017-10-24 17:01:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 17:01:36 +0800 |
commit | 1313e9d8826750fe615bf73565a7fe12e0ff3b92 (patch) | |
tree | e62495b8ed4e4c45271e19a7878fb60d86f13671 | |
parent | 6f4220ef55db331f3ee4422c1d92d4485fb1a4e6 (diff) | |
parent | c06fc97f3cb4283e438ba4520db4f0ba08ed46c8 (diff) | |
download | dexon-solidity-1313e9d8826750fe615bf73565a7fe12e0ff3b92.tar.gz dexon-solidity-1313e9d8826750fe615bf73565a7fe12e0ff3b92.tar.zst dexon-solidity-1313e9d8826750fe615bf73565a7fe12e0ff3b92.zip |
Merge pull request #3126 from limexp/fix/2300-skip-bytecodecompare
Fix PR #3113. No bytecodecompare if tests failed
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index c4584228..ef5f6907 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -73,9 +73,11 @@ test_script: - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION% - soltest.exe --show-progress -- --no-ipc --no-smt # Skip bytecode compare if private key is not available + - cd %APPVEYOR_BUILD_FOLDER% - ps: if ($env:priv_key) { scripts\bytecodecompare\storebytecode.bat $Env:CONFIGURATION $bytecodedir } + - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION% artifacts: - path: solidity-windows.zip |