summaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2016-06-22 11:36:07 -0500
committerRene Rivera <grafikrobot@gmail.com>2016-06-22 11:36:07 -0500
commite6e399fd019c17bf4ad691a698964239b99cc91d (patch)
tree3453d4f9204882b684bdf6f01cac2beded080b44 /circle.yml
parent05db0ddb299a264319f66bed1cb4ca04fad88cd3 (diff)
downloadboost-e6e399fd019c17bf4ad691a698964239b99cc91d.tar.gz
Attempt to use status script from CircleCI.
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml25
1 files changed, 19 insertions, 6 deletions
diff --git a/circle.yml b/circle.yml
index e05ddade6a..92c0e3b2af 100644
--- a/circle.yml
+++ b/circle.yml
@@ -4,11 +4,24 @@
#
# Copyright Rene Rivera 2015-2016.
+machine:
+ environment:
+ SCRIPT: ci_boost_status
+ pre:
+ - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_common.py" -P ${HOME}
+ - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/${SCRIPT}.py" -P ${HOME}
+ post: python "${HOME}/${SCRIPT}" machine_post
checkout:
- post:
- - git submodule update --quiet --init --recursive
-
+ post: python "${HOME}/${SCRIPT}" checkout_post
+dependencies:
+ pre: python "${HOME}/${SCRIPT}" dependencies_pre
+ override: python "${HOME}/${SCRIPT}" dependencies_override
+ post: python "${HOME}/${SCRIPT}" dependencies_post
+database:
+ pre: python "${HOME}/${SCRIPT}" database_pre
+ override: python "${HOME}/${SCRIPT}" database_override
+ post: python "${HOME}/${SCRIPT}" database_post
test:
- override:
- - echo ${PWD}
- - env
+ pre: python "${HOME}/${SCRIPT}" test_pre
+ override: python "${HOME}/${SCRIPT}" test_override
+ post: python "${HOME}/${SCRIPT}" test_post