summaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2016-07-12 15:48:44 -0500
committerRene Rivera <grafikrobot@gmail.com>2016-07-12 15:48:44 -0500
commitb54f5e5ac0c37c1a99391796db6d87a3b83cf6a5 (patch)
tree4c03ca4e442cc2e433fdb5f8741a0f7d21147063 /circle.yml
parent0eecb56974c739300a01fc2002731a7afa01edd7 (diff)
downloadboost-b54f5e5ac0c37c1a99391796db6d87a3b83cf6a5.tar.gz
CircleCI: Need to indicated the test commands are parallel as otherwise
they runs as if on only the first node (but they really don't).
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml
index 6a626fa9da..99e72ad674 100644
--- a/circle.yml
+++ b/circle.yml
@@ -34,8 +34,11 @@ database:
- SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" database_post
test:
pre:
- - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_pre
+ - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_pre:
+ parallel: true
override:
- - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_override
+ - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_override:
+ parallel: true
post:
- - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_post
+ - SCRIPT_N=(${SCRIPT_N}) ; SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]} ; python "${HOME}/${SCRIPT}.py" test_post:
+ parallel: true