From fcad20c1f3d008c6926e4976e7b6c36703992555 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Fri, 31 May 2019 14:00:11 -0700 Subject: [PATCH] Store JUnit test results in CircleCI --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 32948638fd1..dc960ce6f9e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,6 +24,8 @@ jobs: - attach_workspace: at: . - run: ant junit_regression_h1 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml junit_regression_h2: machine: image: ubuntu-1604:201903-01 @@ -34,6 +36,8 @@ jobs: - attach_workspace: at: . - run: ant junit_regression_h2 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml junit_other_p1: machine: image: ubuntu-1604:201903-01 @@ -44,6 +48,8 @@ jobs: - attach_workspace: at: . - run: ant junit_other_p1 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml junit_other_p2: machine: image: ubuntu-1604:201903-01 @@ -54,6 +60,8 @@ jobs: - attach_workspace: at: . - run: ant junit_other_p2 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml junit_other_p3: machine: image: ubuntu-1604:201903-01 @@ -64,6 +72,8 @@ jobs: - attach_workspace: at: . - run: ant junit_other_p3 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml junit_other_p4: machine: image: ubuntu-1604:201903-01 @@ -74,6 +84,8 @@ jobs: - attach_workspace: at: . - run: ant junit_other_p4 + - store_test_results: + path: obj/release/testoutput/TESTS-TestSuites.xml package: machine: image: ubuntu-1604:201903-01