Meshroom/appveyor.yml
Ewout ter Hoeven 12c5adcac3
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
2020-07-16 11:32:28 +02:00

19 lines
409 B
YAML

image: Visual Studio 2019
environment:
PYTHON: "C:\\Python38-x64"
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "pip install -r requirements.txt -r dev_requirements.txt --timeout 45"
build: off
test_script:
- "pytest tests/"
after_test:
- "python setup.py build"
- 7z a meshroomWin64snapshot%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%.zip ./build/*
artifacts:
- path: meshroomWin64*.zip