toxcore/appveyor.yml

21 lines
451 B
YAML
Raw Normal View History

---
cache:
- '%USERPROFILE%\.conan'
install:
- set PATH=C:\Python38-x64\Scripts;%PATH%
- py -3 -m pip install conan
before_build:
- conan remote add -i 0 conancenter https://center.conan.io
- conan install -if _build .
build_script:
2021-04-09 15:08:24 +08:00
- conan build -bf _build -if _build .
test_script:
- set CONAN_CPU_COUNT=50
- set CTEST_OUTPUT_ON_FAILURE=1
2021-04-09 15:08:24 +08:00
- conan install -if _build -o with_tests=True .
- conan build -bf _build -if _build .