summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 8ac6728c3ab19d4b94dd8be248fbc15ee6839e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: '{build}'
branches:
  only:
  - master
environment:
  GITTEST_INVASIVE_FILESYSTEM: 1

  matrix:
  - GENERATOR: "Visual Studio 11"
    ARCH: 32
  - GENERATOR: "Visual Studio 11 Win64"
    ARCH: 64
build_script:
- ps: |
    mkdir build
    cd build
    cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$env:GENERATOR"
    cmake --build . --config RelWithDebInfo
test_script:
- ps: ctest -V .