Skip to content
Snippets Groups Projects
Commit 748d802f authored by Jan Möbius's avatar Jan Möbius
Browse files

MOved VS2017 build from python 3.7 to 3.9

parent a134124e
No related branches found
No related tags found
1 merge request!5Updates
Pipeline #20342 canceled
......@@ -3,19 +3,19 @@ stages:
- test
- deploy
build-3.7-VS2017:
build-3.9-VS2017:
stage:
build
tags:
- VS2017
- python37
- python39
variables:
BUILD_PLATFORM: "VS2017"
ARCHITECTURE: "x64"
before_script:
- git submodule sync --recursive
- git submodule update --init --recursive
script: "CI\\build-3.7-VS2017.bat"
script: "CI\\build-3.9-VS2017.bat"
artifacts:
paths:
- dist3/
......@@ -83,15 +83,15 @@ build-2.7-macos:
paths:
- dist2/
test-3.7-VS2017:
test-3.9-VS2017:
stage:
test
tags:
- VS2017
- python37
- python39
dependencies:
- build-3.7-VS2017
script: "CI\\test-3.7-VS2017.bat"
- build-3.9-VS2017
script: "CI\\test-3.9-VS2017.bat"
test-3.9-linux:
......@@ -153,15 +153,15 @@ test-2.7-macos:
- cd tests
- python -m unittest discover
deploy-3.7-VS2017:
deploy-3.9-VS2017:
stage:
deploy
tags:
- VS2017
- python37
- python39
dependencies:
- build-3.7-VS2017
script: "CI\\deploy-3.7-VS2017.bat"
- build-3.9-VS2017
script: "CI\\deploy-3.9-VS2017.bat"
artifacts:
paths:
- release/*.whl
......
set PATH=C:\Program Files\Python37;C:\Program Files\Python37\Scripts;C:\Program Files\CMake\bin;%PATH%
virtualenv -p "C:\Program Files\Python37\python.exe" .
set PATH=C:\Program Files\Python39;C:\Program Files\Python39\Scripts;C:\Program Files\CMake\bin;%PATH%
virtualenv -p "C:\Program Files\Python39\python.exe" .
call .\Scripts\activate
python setup.py bdist_wheel --dist-dir dist3
File moved
set PATH=C:\Program Files\Python37;C:\Program Files\Python37\Scripts;%PATH%
virtualenv -p "C:\Program Files\Python37\python.exe" .
set PATH=C:\Program Files\Python39;C:\Program Files\Python39\Scripts;%PATH%
virtualenv -p "C:\Program Files\Python39\python.exe" .
call .\Scripts\activate
python -m pip install numpy==1.19.3
cd dist3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment