.appveyor.yml 550 字节
Newer Older
1 2
version: 1.0.{build}
os: Visual Studio 2015
R
test  
root 已提交
3 4 5 6
environment:
  matrix:
    - ARCH: amd64
    - ARCH: x86
R
test  
root 已提交
7

8 9 10 11
clone_folder: c:\dev\TDengine
clone_depth: 1

init:
R
test  
root 已提交
12
  - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %ARCH%
13 14 15 16 17 18 19 20 21

before_build:
  - cd c:\dev\TDengine
  - md build

build_script:
  - cd build
  - cmake -G "NMake Makefiles" ..
  - nmake install
R
root 已提交
22
  
23 24 25 26 27 28 29
notifications:
- provider: Email
  to:
  - sangshuduo@gmail.com
  on_build_success: true
  on_build_failure: true
  on_build_status_changed: true