Testing env vars in circle config

This commit is contained in:
Ryan Baxter
2018-03-18 13:26:10 -04:00
parent ccf295ec49
commit ae24dbfc91

View File

@@ -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