From f9192a1dedcc11237a04da637a845d469202ee42 Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Thu, 21 Jul 2016 13:53:57 +0100 Subject: [PATCH] [Minor] Publish test suite output as build artifacts in CircleCI --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index 1c0ce6745..596a1469c 100644 --- a/circle.yml +++ b/circle.yml @@ -14,3 +14,5 @@ test: - cmake . -DCMAKE_INSTALL_PREFIX=./_install - cmake --build . --target install - sudo robot test/functional/cases + post: + - for i in output.xml log.html report.html; do mv $i $CIRCLE_ARTIFACTS; done -- 2.39.5