From 68c77df1d664fe760caae9d5b8ea0c0cfbdc2aa8 Mon Sep 17 00:00:00 2001 From: Isaak Lim Date: Thu, 6 Dec 2018 10:41:23 +0100 Subject: [PATCH] update python path for VS builds --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a370762..1ebbfa8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ build-3.6-VS2017: - git submodule update --init --recursive script: - set Path=%Path%;C:\Program Files\Python36;C:\Program Files\Python36\Scripts; - - virtualenv --clear -p "C:\Program Files\Python36\python.exe" . + - virtualenv --clear -p "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\python.exe" . - call .\Scripts\activate - python setup.py bdist_wheel --dist-dir dist3 artifacts: @@ -94,7 +94,7 @@ test-3.6-VS2017: - build-3.6-VS2017 script: - set Path=%Path%;C:\Program Files\Python36;C:\Program Files\Python36\Scripts; - - virtualenv --clear -p "C:\Program Files\Python36\python.exe" . + - virtualenv --clear -p "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\python.exe" . - call .\Scripts\activate - cd dist3 - FOR %%a IN (*.whl) DO pip install %%a -- GitLab