Browse Source

Minor changes for circle.

pull/124/head
Shane Mc Cormack 3 years ago
parent
commit
945d77aeae
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      .circleci/config.yml

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

@@ -30,12 +30,15 @@ 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:
38
+          when: always
37 39
           path: ~/test-results
38 40
       - store_artifacts:
41
+          when: always
39 42
           path: ~/test-results/junit
40 43
       - store_artifacts:
41 44
           path: plugins/dist-versioned
@@ -50,12 +53,16 @@ jobs:
50 53
       - store_artifacts:
51 54
           path: build/libs/dmdirc-javadoc.jar
52 55
       - store_artifacts:
56
+          when: always
53 57
           path: client/build/reports/pmd/*
54 58
       - store_artifacts:
59
+          when: always
55 60
           path: plugins/pmd/*
56 61
       - store_artifacts:
62
+          when: always
57 63
           path: util/build/reports/pmd/*
58 64
       - store_artifacts:
65
+          when: always
59 66
           path: parser/build/reports/pmd/*
60 67
 workflows:
61 68
   version: 2

Loading…
Cancel
Save