summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: cc31e7cdb943726f500a6e43c30c10b7e82cfa4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
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