mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
- 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
19 lines
409 B
YAML
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
|