File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ skip_tags : true
2
+ image : Visual Studio 2017
3
+ configuration : Release
4
+ platform : x64
5
+ environment :
6
+ APPVEYOR_SAVE_CACHE_ON_ERROR : true
7
+ cache : C:\tools\vcpkg\installed\
8
+ before_build :
9
+ - ps : >-
10
+ $packages = @(
11
+ "boost-filesystem",
12
+ "boost-signals2",
13
+ "boost-interprocess",
14
+ "boost-test",
15
+ "libevent",
16
+ "openssl",
17
+ "zeromq",
18
+ "berkeleydb",
19
+ "secp256k1",
20
+ "leveldb"
21
+ )
22
+
23
+ for ($i=0; $i -lt $packages.length; $i++) {
24
+ $all_packages += $packages[$i] + ":" + $env:PLATFORM + "-windows-static "
25
+ }
26
+
27
+ Invoke-Expression -Command "vcpkg install $all_packages"
28
+ build :
29
+ project : build_msvc\bitcoin.sln
30
+ parallel : true
31
+ verbosity : minimal
32
+ test_script :
33
+ - cmd : build_msvc\%PLATFORM%\Release\test_bitcoin.exe
34
+ deploy : off
You can’t perform that action at this time.
0 commit comments