From ccf295ec493dd5a83a6e07dc5744f9c50c45e64a Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Sun, 18 Mar 2018 11:28:58 -0400 Subject: [PATCH] Use users home directory to store junit reports --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 43e5ec23..f7f45419 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,12 +29,12 @@ jobs: name: "Aggregate test results" when: always command: | - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; + mkdir -p $HOME/$CIRCLE_TEST_REPORTS/junit/ + find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} $HOME/$CIRCLE_TEST_REPORTS/junit/ \; bash <(curl -s https://codecov.io/bash) - store_artifacts: - path: /junit/ + path: $HOME/$CIRCLE_TEST_REPORTS/junit/ destination: artifacts - store_test_results: - path: /junit/ + path: $HOME/$CIRCLE_TEST_REPORTS/junit/ destination: testartifacts \ No newline at end of file