From 001470dc9a4bed0ba18c15aef7c82f0728747c06 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sat, 23 Dec 2017 21:36:31 -0500 Subject: [PATCH] add hot, new python onto the path and hope it catches --- appveyor.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f2fe69f0..f629288d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -51,14 +51,16 @@ init: - echo %CMAKE_GENERATOR% before_build: +- set PYTHON_PATH=C:\Python36 +- if "%PLATFORM%"=="x64" (set PYTHON_PATH=C:\Python36-x64) +- set PATH=%PYTHON_PATH%;%PATH% - md build-sol2 - cd build-sol2 - cmake .. -G %CMAKE_GENERATOR% -DLUA_VERSION=%LUA_VERSION% -DLUA_BUILD=ON -DTESTS=ON -DEXAMPLES=ON -DSINGLE=ON -DTESTS_EXAMPLES=ON -DTESTS_SINGLE=ON -build: - project: c:\projects\sol2\build-sol2\sol2.sln - verbosity: minimal - parallel: true +build_script: +- cd build-sol2 +- cmake --build . test_script: - cd build-sol2