toxcore/appveyor.yml
iphydf 74bc87f277
test: Make ERROR logging fatal in tests.
This doesn't currently work, because we get a lot of errors during tests.
This should not happen. Either those errors are warnings, or something is
wrong with either the code or the test.
2021-12-14 13:00:25 +00:00

21 lines
402 B
YAML

---
cache:
- '%USERPROFILE%\.conan'
install:
- set PATH=C:\Python38-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 . &
exit 0