We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ad217 commit 004a1fcCopy full SHA for 004a1fc
1 file changed
ci/windows.ps1
@@ -22,6 +22,8 @@ param (
22
[string]$build = "windows"
23
)
24
25
+Add-Type -AssemblyName System.IO.Compression.FileSystem
26
+
27
Write-Host "NFHTTP build process starting..."
28
Write-Host $build
29
@@ -30,6 +32,10 @@ try
30
32
# Upgrade pip or else the CI will complain
31
33
c:\python27\python.exe -m pip install --upgrade pip
34
35
+ wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.zip -OutFile boost_1_64_0.zip
36
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("boost_1_64_0.zip", "boost_1_64_0")
37
+ $env:BOOST_ROOT = Join-Path $PSScriptRoot "boost_1_64_0"
38
39
# Start virtualenv
40
pip install virtualenv
41
virtualenv nfhttp_env
0 commit comments