From ae24dbfc917c68bfa32bcad2cfd38149edf8b0e6 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Sun, 18 Mar 2018 13:26:10 -0400 Subject: [PATCH] Testing env vars in circle config --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f7f45419..347ee59c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,12 +29,14 @@ jobs: name: "Aggregate test results" when: always command: | - mkdir -p $HOME/$CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} $HOME/$CIRCLE_TEST_REPORTS/junit/ \; + echo HOME $HOME && \ + echo testdir $CIRCLE_TEST_REPORTS && \ + mkdir -p $CIRCLE_TEST_REPORTS/junit/ + find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \; bash <(curl -s https://codecov.io/bash) - store_artifacts: - path: $HOME/$CIRCLE_TEST_REPORTS/junit/ + path: ~/junit/ destination: artifacts - store_test_results: - path: $HOME/$CIRCLE_TEST_REPORTS/junit/ + path: ~/junit/ destination: testartifacts \ No newline at end of file