File tree Expand file tree Collapse file tree 2 files changed +26
-19
lines changed
Expand file tree Collapse file tree 2 files changed +26
-19
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ working_directory : ~/LibraryOfCongress/bagit-java
5+ environment :
6+ CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
7+ docker :
8+ - image : circleci/openjdk:8-jdk
9+ # filters:
10+ # branches:
11+ # only: master
12+ steps :
13+ - checkout # checks out your code to your working directory
14+ - restore_cache :
15+ keys :
16+ - dependency-cache
17+ - run : ./gradlew check dependencyCheckUpdate dependencyCheckAnalyze --no-daemon
18+ - run : mkdir -p $CIRCLE_TEST_REPORTS/junit
19+ - run : find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
20+ - store_test_results :
21+ path : /tmp/circleci-test-results
22+ # Save dependency cache
23+ - save_cache :
24+ key : dependency-cache
25+ paths :
26+ - ~/.gradle
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments