AppVeyor: Update build environment and save artifacts (#875)

- Updates the build environment to the Visual Studio 2019 image
 - Saves the build folder as an artifact
 - Unfreeze cx_Freeze version to allow dev builds with Python 3.7 and 3.8
 - Use Python 3.8 in AppVeyor builds
This commit is contained in:
Ewout ter Hoeven 2020-07-16 11:32:28 +02:00 committed by GitHub
parent 883a0d8145
commit 12c5adcac3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View file

@ -1,7 +1,6 @@
image: Visual Studio 2019
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
PYTHON: "C:\\Python38-x64"
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
@ -14,3 +13,7 @@ test_script:
after_test:
- "python setup.py build"
- 7z a meshroomWin64snapshot%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%.zip ./build/*
artifacts:
- path: meshroomWin64*.zip

View file

@ -1,5 +1,6 @@
# packaging
cx_Freeze==5.1.1
cx_Freeze
# use cx_Freeze==5.1.1 for Python-2
# testing
pytest
pytest