mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
22 lines
452 B
YAML
22 lines
452 B
YAML
---
|
|
cache:
|
|
- '%USERPROFILE%\.conan'
|
|
|
|
install:
|
|
- set PATH=C:\Python38-x64\Scripts;%PATH%
|
|
- py -3 -m pip install conan
|
|
|
|
before_build:
|
|
- ps: |
|
|
conan install -if _build .
|
|
|
|
build_script:
|
|
- conan build -bf _build -if _build .
|
|
|
|
test_script:
|
|
# TODO(iphydf): Tests are unstable and slow on windows at the moment.
|
|
- set CONAN_CPU_COUNT=50
|
|
- conan install -if _build -o with_tests=True .
|
|
- conan build -bf _build -if _build . &
|
|
exit 0
|