Skip to content

Commit

Permalink
Fix AppVeyor: add Python3 to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Nov 21, 2015
1 parent 2cc42ed commit 0340188
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ install:
- cmd: set POLLY_VERSION="0.7.5"
- cmd: appveyor DownloadFile "https://github.com/ruslo/polly/archive/v%POLLY_VERSION%.tar.gz"
- cmd: cmake -E tar xf "v%POLLY_VERSION%.tar.gz"
- cmd: set PATH=%cd%\polly-%POLLY_VERSION%\bin;%PATH%
- cmd: set POLLY_PATH=%cd%\polly-%POLLY_VERSION%\bin
- cmd: set PATH=C:\Python34-x64;%PATH%
- cmd: cmake --version
- cmd: python --version

build_script:
- cmd: build.py --verbose --pack TGZ --config "%CONFIG%" --toolchain "%TOOLCHAIN%"
- cmd: python %POLLY_PATH%\build.py --verbose --pack TGZ --config "%CONFIG%" --toolchain "%TOOLCHAIN%"

artifacts:
- path: _builds\*\Foo-*.tar.gz
Expand Down

0 comments on commit 0340188

Please sign in to comment.