Skip to content

Commit 2b9ea74

Browse files
committed
updated appvoyer
1 parent e4b68c6 commit 2b9ea74

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.appveyor.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,20 @@ install:
1414
- pip install autobahntestsuite
1515
- ps: If ($env:Platform -Match "x86"){ $env:CMAKE_ARCH="" } Else { $env:CMAKE_ARCH=" Win64"}
1616
- cd c:\projects
17+
- set CMAKE_URL="https://cmake.org/files/v3.9/cmake-3.9.3-win64-x64.zip"
18+
- appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
19+
- 7z x cmake.zip -oC:\projects\cmake > nul
20+
- move C:\projects\deps\cmake-* C:\projects\deps\cmake # Move to a version-agnostic directory
21+
- set PATH=C:\projects\deps\cmake\bin;%PATH%
22+
- cmake --version
1723
- mkdir build
1824
- cd build
1925
- git clone https://github.com/Microsoft/vcpkg
2026
- cd vcpkg
2127
- powershell -exec bypass scripts\bootstrap.ps1
2228
- .\vcpkg integrate install
2329
- .\vcpkg install zlib:x86-windows-static openssl:x86-windows-static zlib openssl
24-
30+
2531
build_script:
2632
- cd c:\projects\proj
2733
- mkdir build

0 commit comments

Comments
 (0)