Skip to content

Commit

Permalink
Download boost on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
8W9aG committed Aug 28, 2018
1 parent d2ad217 commit 004a1fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ param (
[string]$build = "windows"
)

Add-Type -AssemblyName System.IO.Compression.FileSystem

Write-Host "NFHTTP build process starting..."
Write-Host $build

Expand All @@ -30,6 +32,10 @@ try
# Upgrade pip or else the CI will complain
c:\python27\python.exe -m pip install --upgrade pip

wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.zip -OutFile boost_1_64_0.zip
[System.IO.Compression.ZipFile]::ExtractToDirectory("boost_1_64_0.zip", "boost_1_64_0")
$env:BOOST_ROOT = Join-Path $PSScriptRoot "boost_1_64_0"

# Start virtualenv
pip install virtualenv
virtualenv nfhttp_env
Expand Down

0 comments on commit 004a1fc

Please sign in to comment.