From 644266e7c61ced75ec6c654991279d2afec65e22 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Wed, 11 Mar 2020 13:22:24 +0800 Subject: [PATCH] add appveyor ci support --- .appveyor.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000000..559431e2f9 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,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 -- GitLab