Browse Source

Minor changes for circle.

master
Shane Mc Cormack 3 years ago
parent
commit
25eb96aa02
1 changed files with 10 additions and 0 deletions
  1. 10
    0
      .circleci/config.yml

+ 10
- 0
.circleci/config.yml View File

@@ -30,13 +30,23 @@ jobs:
30 30
           key: v1-gradle-cache-{{ checksum "build.gradle" }}
31 31
       - run:
32 32
           name: Prepare test output
33
+          when: always
33 34
           command: |
34 35
             mkdir -p ~/test-results/junit/
35 36
             find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
36 37
       - store_test_results:
37 38
           path: ~/test-results
39
+          when: always
38 40
       - store_artifacts:
39 41
           path: ~/test-results/junit
42
+          when: always
43
+      - store_artifacts:
44
+          path: irc/build/libs
45
+      - store_artifacts:
46
+          path: common/build/libs
47
+      - store_artifacts:
48
+          path: build/reports/pmd/*
49
+          when: always
40 50
       - persist_to_workspace:
41 51
           root: .
42 52
           paths:

Loading…
Cancel
Save