From 3b46f44454cf2d570c23a044364799ade788cc60 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 30 Oct 2017 20:29:42 -0700 Subject: [PATCH] Changed store_artifacts & store_test_results syntax. --- .circleci/config.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2af8879..0544709 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,13 +30,8 @@ jobs: name: Run All Checks command: ./gradlew check - - run: - name: Save Test Results - command: | - mkdir -p ~/test - cp -a build/reports/tests/test/. ~/test - when: always - - store_test_results: - path: ~/test - store_artifacts: - path: ~/test \ No newline at end of file + path: build/reports + destination: reports + - store_test_results: + path: build/reports/tests/test \ No newline at end of file