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

Loading…
Cancel
Save