.appveyor.yml 559 字节
Newer Older
1 2
version: 1.0.{build}
os: Visual Studio 2015
R
test  
root 已提交
3 4

Platform:
R
test  
root 已提交
5 6
  - x86
  - amd64
7 8 9 10
clone_folder: c:\dev\TDengine
clone_depth: 1

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

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

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