From 7c88275ada67b7289ef53dd25e1af353c35a8b6a Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 1 Jun 2015 09:49:38 -0500 Subject: [PATCH] Add Appveyor configuration. --- appveyor.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..9051290 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,40 @@ +version: 1.0.{build}-{branch} + +branches: + only: + - develop + +skip_tags: true + +notifications: + - provider: Email + to: + - grafikrobot@gmail.com + on_build_status_changed: true + +matrix: + - environment: + TOOLSET: vs-2008 + - environment: + TOOLSET: vs-2010 + - environment: + TOOLSET: vs-2012 + - environment: + TOOLSET: vs-2013 + - environment: + TOOLSET: vs-2015 + os: Visual Studio 2015 RC + +init: + - choco install wget + - wget "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/script.py" +install: python script.py install +before_build: python script.py before_build +build_script: python script.py build_script +after_build: python script.py after_build +before_test: python script.py before_test +test_script: python script.py test_script +after_test: python script.py after_test +on_success: python script.py on_success +on_failure: python script.py on_failure +on_finish: python script.py on_finish