From d62f877842a5ce3de98ff6b2ca062c57b0c98f70 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 12 Mar 2017 22:26:24 -0500 Subject: [PATCH] Add Windows CI testing. --- appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..b47764930 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +# Use, modification, and distribution are +# subject to the Boost Software License, Version 1.0. (See accompanying +# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +# +# Copyright Rene Rivera 2015-2016. + +image: + - Visual Studio 2013 + - Visual Studio 2015 + - Visual Studio 2017 + +environment: + matrix: + - TOOLSET: msvc + TEST_ALL_EXTRAS: + +test_script: + - ./bootstrap.bat --with-toolset=${TOOLSET} + - cd test && python test_all.py ${TOOLSET} ${TEST_ALL_EXTRAS}