toxcore/appveyor.yml

24 lines
508 B
YAML
Raw Normal View History

---
cache:
- '%USERPROFILE%\.conan'
install:
- set PATH=C:\Python38-x64\Scripts;%PATH%
- py -3 -m pip install conan
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan --force
before_build:
- ps: |
mkdir _build
cd _build
conan install ..
build_script:
- conan build .. --configure --build
test_script:
# TODO(iphydf): Tests are unstable and slow on windows at the moment.
- set CONAN_CPU_COUNT=50
- conan build .. --test &
exit 0