.appveyor.yml 531 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
version: 1.0.{build}
os: Visual Studio 2015
environment:
  matrix:
    - ARCH: amd64

clone_folder: c:\dev\TDengine
clone_depth: 1

init:
  - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %ARCH%

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

build_script:
  - cd build
  - cmake -G "NMake Makefiles" ..
  - nmake install

notifications:
- provider: Email
  to:
  - sangshuduo@gmail.com
  on_build_success: true
  on_build_failure: true
  on_build_status_changed: true