This is an automated email from the ASF dual-hosted git repository. astitcher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
commit 5dae7dd21c61dd08fafbc0aab0fefa00b12f0a94 Author: Jiří Daněk <[email protected]> AuthorDate: Mon Nov 4 12:51:49 2019 -0500 PROTON-2126: Fix appveyor python usage --- .appveyor.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 116e881..6379955 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,6 +1,8 @@ version: '{branch}.{build}' configuration: RelWithDebInfo environment: + PYTHON: C:\Python35\python.exe + matrix: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 CMAKE_GENERATOR: Visual Studio 15 @@ -16,8 +18,8 @@ install: - vcpkg install jsoncpp:x86-windows - vcpkg install jsoncpp:x64-windows - vcpkg integrate install -- pip install --user --upgrade pip -- pip install --user setuptools tox +- "%PYTHON% -m pip install --user --upgrade pip" +- "%PYTHON% -m pip install --user --upgrade setuptools wheel tox" cache: - C:\ProgramData\chocolatey\bin -> .appveyor.yml - C:\ProgramData\chocolatey\lib -> .appveyor.yml @@ -25,7 +27,7 @@ cache: before_build: - mkdir BLD - cd BLD -- cmake %VCPKG_INTEGRATION% -G "%CMAKE_GENERATOR%" %QPID_PROTON_CMAKE_ARGS% .. +- cmake %VCPKG_INTEGRATION% -G "%CMAKE_GENERATOR%" -DPYTHON_EXECUTABLE=%PYTHON% %QPID_PROTON_CMAKE_ARGS% .. - cd .. build: project: BLD/Proton.sln --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
