summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2016-06-18 23:00:42 -0500
committerRene Rivera <grafikrobot@gmail.com>2016-06-21 16:35:23 -0500
commit543bf10fdfdfa964ff341b14af0312f41758cc02 (patch)
tree4aa3c9467bfc2b91281406262819c8f8fcfaf9aa /appveyor.yml
parente97f15c858b919550d6f1e85b063fe402ce5ae13 (diff)
downloadboost-543bf10fdfdfa964ff341b14af0312f41758cc02.tar.gz
Add initial Appveyor CI testing starting with "status" script.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000000..04ccd371ea
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+environment:
+ matrix:
+ - SCRIPT: ci_boost_status
+
+init:
+ - cd %APPVEYOR_BUILD_FOLDER%/..
+ - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_common.py"
+ - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/release-tools/develop/%SCRIPT%.py"
+ - cd %APPVEYOR_BUILD_FOLDER%
+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