Skip to content

Commit

Permalink
Fixed escaping in AppVeyor's script
Browse files Browse the repository at this point in the history
  • Loading branch information
ereOn committed Aug 12, 2017
1 parent c7feb79 commit 9bf38d3
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ shallow_clone: true
image: Visual Studio 2017

environment:
PYTHON_ROOT: "C:\Python27"
BOOST_ROOT: "C:\Libraries\boost_1_64_0"
PYTHON_ROOT: "C:\\Python27"
BOOST_ROOT: "C:\\Libraries\\boost_1_64_0"
matrix:
- platform: x64
ARCH_BITS: 64
Expand All @@ -18,22 +18,21 @@ configuration:
- Debug

init:
- "C:\Program Files (x86)\%VSINSTALL%\vcvarsall.bat %PLATFORM%"
- "C:\\Program Files (x86)\\%VSINSTALL%\\vcvarsall.bat %PLATFORM%"

before_build:
# need teapot to build dependencies
- "%PYTHON_ROOT%\python.exe -m pip install teapot"
# We rely on teapot for third-party builds.
- "%PYTHON_ROOT%\\python.exe -m pip install teapot"

build_script:
- "%PYTHON_ROOT%\scripts\teapot.exe build iconv"
- "%PYTHON_ROOT%\scripts\teapot.exe build openssl"
- "%PYTHON_ROOT%\scripts\teapot.exe build curl"
- "mkdir third-party\install\%PLATFORM%\%CONFIGURATION%\include\boost-1_64\boost"
- "xcopy /S %BOOST_ROOT%\boost\* third-party\install\%PLATFORM%\%CONFIGURATION%\include\boost-1_64\boost\"
- "xcopy /S %BOOST_ROOT%\lib%ARCH_BITS%-msvc-14.1\*vc141-mt-*.lib third-party\install\%PLATFORM%\%CONFIGURATION%\lib\"
- "%PYTHON_ROOT%\\scripts\\teapot.exe build iconv"
- "%PYTHON_ROOT%\\scripts\\teapot.exe build openssl"
- "%PYTHON_ROOT%\\scripts\\teapot.exe build curl"
- "mkdir third-party\\install\\%PLATFORM%\\%CONFIGURATION%\\include\\boost-1_64\\boost"
- "xcopy /S %BOOST_ROOT%\\boost\\* third-party\\install\\%PLATFORM%\\%CONFIGURATION%\\include\\boost-1_64\\boost\\"
- "xcopy /S %BOOST_ROOT%\\lib%ARCH_BITS%-msvc-14.1\\*vc141-mt-*.lib third-party\\install\\%PLATFORM%\\%CONFIGURATION%\\lib\\"
- "nmake -f Makefile.windows build_%CONFIGURATION%_%PLATFORM%"

branches:
only:
- master

0 comments on commit 9bf38d3

Please sign in to comment.