.appveyor.yml 585 字节
Newer Older
1 2 3 4 5
version: 1.0.{build}
os: Visual Studio 2015
environment:
  matrix:
    - ARCH: amd64
R
root 已提交
6
    - ARCH: x86
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

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
R
root 已提交
22
  - echo Building platform=%PLATFORM%
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