toxcore/appveyor.yml
Robin Linden a09f34ae65
chore: Update the Appveyor build to VS2019 to work around conan issues
Apparently the libvpx recipe doesn't really work on VS2015 anymore.
2022-03-17 18:48:52 +01:00

22 lines
433 B
YAML

---
image: Visual Studio 2019
cache:
- '%USERPROFILE%\.conan -> conanfile.py'
install:
- set PATH=C:\Python310-x64\Scripts;%PATH%
- py -3 -m pip install conan
before_build:
- conan install -if _build .
build_script:
- conan build -bf _build -if _build .
test_script:
- set CONAN_CPU_COUNT=50
- set CTEST_OUTPUT_ON_FAILURE=1
- conan install -if _build -o with_tests=True .
- conan build -bf _build -if _build .