diff options
author | Bob Summerwill <bob@summerwill.net> | 2016-08-03 14:36:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-03 14:36:37 +0800 |
commit | b7c8e654d97794b94551ca4367c91bb32a039bd7 (patch) | |
tree | 19065153910ff9880c05b7f68c334cd5f536f9be | |
parent | 0e9790f2a9325c8662d328ec69b7ff045dae7a28 (diff) | |
parent | 8cb8644182882b5263768e55d59d73b59ab3f32d (diff) | |
download | dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar.gz dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar.bz2 dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar.lz dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar.xz dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.tar.zst dexon-solidity-b7c8e654d97794b94551ca4367c91bb32a039bd7.zip |
Merge pull request #806 from bobsummerwill/develop
Let's try Windows Tests-over-IPC and see where we are at
-rw-r--r-- | appveyor.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml index b46e3155..ca1d51ff 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -46,13 +46,13 @@ build_script: - cd %APPVEYOR_BUILD_FOLDER% - scripts\release.bat %CONFIGURATION% -#test_script: -# - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION% -# - copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" . -# - eth.exe --test -d %TMP%/test -# - soltest.exe --ipc /tmp/test/geth.ipc -# - pkill eth - +test_script: + - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION% + - copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" . + - start eth.exe --test -d %TMP%\eth_for_soltest + - soltest.exe --ipc %TMP%\eth_for_soltest\geth.ipc + - pkill eth + artifacts: - path: solidity-develop-windows.zip name: solidity-develop-windows-zip |