File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+
5+ working_directory : ~/openapi-diff
6+
7+ docker :
8+ - image : circleci/openjdk:8-jdk-node-browsers
9+
10+ steps :
11+
12+ - checkout
13+
14+ - restore_cache :
15+ key : openapi-diff-{{ checksum "pom.xml" }}
16+
17+ - run : ./mvnw package -X
18+
19+ - save_cache :
20+ paths :
21+ - ~/.m2
22+ key : openapi-diff-{{ checksum "pom.xml" }}
23+
24+ - run :
25+ name : Save test results
26+ command : |
27+ mkdir -p ~/test-results/junit/
28+ find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/test-results/junit/ \;
29+ when : always
30+ - store_test_results :
31+ path : ~/test-results
32+
33+ - store_artifacts :
34+ path : core/target/openapi-diff-*-SNAPSHOT.jar
35+ - store_artifacts :
36+ path : cli/target/openapi-diff-*-SNAPSHOT.jar
You can’t perform that action at this time.
0 commit comments