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
           key: v1-gradle-cache-{{ checksum "build.gradle" }}
30
           key: v1-gradle-cache-{{ checksum "build.gradle" }}
31
       - run:
31
       - run:
32
           name: Prepare test output
32
           name: Prepare test output
33
+          when: always
33
           command: |
34
           command: |
34
             mkdir -p ~/test-results/junit/
35
             mkdir -p ~/test-results/junit/
35
             find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
36
             find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
36
       - store_test_results:
37
       - store_test_results:
37
           path: ~/test-results
38
           path: ~/test-results
39
+          when: always
38
       - store_artifacts:
40
       - store_artifacts:
39
           path: ~/test-results/junit
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
       - persist_to_workspace:
50
       - persist_to_workspace:
41
           root: .
51
           root: .
42
           paths:
52
           paths:

Loading…
Cancel
Save