Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 60a26a7

Browse files
committed
appveyor silent unzip && running tests after build
1 parent b436417 commit 60a26a7

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

appveyor.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ before_build:
2424
- mkdir c:\projects\ethash\deps
2525
- cd c:\projects\ethash\deps
2626
- curl -O https://build.ethdev.com/builds/windows-precompiled/boost.tar.gz
27-
- 7z x boost.tar.gz
28-
- 7z x boost.tar
27+
- echo "Unzipping boost..."
28+
- 7z x boost.tar.gz > nul
29+
- 7z x boost.tar > nul
2930
- ls
3031
- echo "Running cmake..."
3132
- cd c:\projects\ethash
@@ -34,3 +35,9 @@ before_build:
3435
build:
3536
project: ALL_BUILD.vcxproj # path to Visual Studio solution or project
3637

38+
after_build:
39+
- echo "Running tests..."
40+
- cd c:\projects\ethash\test\c\Debug
41+
- Test.exe
42+
- echo "Finished!"
43+

0 commit comments

Comments
 (0)