Skip to content

Commit

Permalink
update python path for VS builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaak Lim committed Dec 6, 2018
1 parent 36f4710 commit 68c77df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 68c77df

Please sign in to comment.