Skip to content

Commit

Permalink
adjust circle ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-draeger committed Dec 6, 2018
1 parent cf20be4 commit 6fdc88b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: 2
jobs:
build:
machine:
docker:
- image: circleci/openjdk:8-jdk

working_directory: ~/repo
Expand All @@ -30,3 +30,16 @@ jobs:

# run tests!
- run: ./mvnw clean verify

- run:
name: Save test results
command: |
mkdir -p ~/junit/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \;
when: always

- store_test_results:
path: ~/junit

- store_artifacts:
path: ~/junit

0 comments on commit 6fdc88b

Please sign in to comment.