We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ad217 commit cce6963Copy full SHA for cce6963
1 file changed
ci/windows.ps1
@@ -30,6 +30,10 @@ try
30
# Upgrade pip or else the CI will complain
31
c:\python27\python.exe -m pip install --upgrade pip
32
33
+ wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.zip -OutFile boost_1_64_0.zip
34
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("boost_1_64_0.zip", "boost_1_64_0")
35
+ $env:BOOST_ROOT = Join-Path $PSScriptRoot "boost_1_64_0"
36
+
37
# Start virtualenv
38
pip install virtualenv
39
virtualenv nfhttp_env
0 commit comments