From f7e670b47044f277535baf8b364ac142ae2dea23 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 26 Aug 2020 16:48:25 -0400 Subject: [PATCH] updating circle config --- .circleci/config.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2fe21bbd..ef0abbf2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -112,10 +112,19 @@ jobs: export KUBECONFIG=/tmp/kubeconfig cd spring-cloud-kubernetes-integration-tests ../mvnw -Ddocker.host='unix:///var/snap/microk8s/current/docker.sock' -Dimage.registry='localhost:32000' clean package fabric8:build verify -Pfmp,it,spring - - store_test_results: - path: $HOME/artifacts/junit/ + - run: + name: "Aggregate test results" + when: always + command: | + mkdir -p ~/junit/ + find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \; + bash <(curl -s https://codecov.io/bash) - store_artifacts: - path: $HOME/artifacts/ + path: ~/junit/ + destination: artifacts + - store_test_results: + path: ~/junit/ + destination: testartifacts notify: webhooks: - url: https://webhooks.gitter.im/e/22e6bb4eb945dd61ba54