.appveyor.yml 618 字节
Newer Older
1 2 3 4 5
version: 1.0.{build}
os: Visual Studio 2015
environment:
  matrix:
    - ARCH: amd64
R
root 已提交
6
    - ARCH: x86
R
test  
root 已提交
7 8 9
platform:
  - x86
  - amd64
10 11 12 13
clone_folder: c:\dev\TDengine
clone_depth: 1

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

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

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