This repository was archived by the owner on Dec 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-20
lines changed Expand file tree Collapse file tree 1 file changed +7
-20
lines changed Original file line number Diff line number Diff line change @@ -33,34 +33,14 @@ commands: # a reusable command with parameters
33
33
paths :
34
34
# This is a broad list of cache paths to include many possible development environments
35
35
# You can probably delete some of these entries
36
- - vendor/bundle
37
- - ~/.pyenv
38
- - ~/virtualenvs
39
36
- ~/.m2
40
- - ~/.ivy2
41
- - ~/.sbt
42
- - ~/.bundle
43
- - ~/.gradle
44
- - ~/.cache/bower
45
- - " .git"
46
- - ~/.stack
47
37
# save "default" cache using the key "source-v2-"
48
38
- save_cache :
49
39
key : source-v2-
50
40
paths :
51
41
# This is a broad list of cache paths to include many possible development environments
52
42
# You can probably delete some of these entries
53
- - vendor/bundle
54
- - ~/.pyenv
55
- - ~/virtualenvs
56
43
- ~/.m2
57
- - ~/.ivy2
58
- - ~/.sbt
59
- - ~/.bundle
60
- - ~/.gradle
61
- - ~/.cache/bower
62
- - " .git"
63
- - ~/.stack
64
44
# Teardown
65
45
# If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
66
46
# Save test results
@@ -155,8 +135,15 @@ jobs:
155
135
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
156
136
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
157
137
steps :
138
+ - restore_cache :
139
+ keys :
140
+ - javaClientMavenCache
158
141
- command_build_and_test :
159
142
jobId : " testJava17ClientSamples"
143
+ - save_cache :
144
+ key : javaClientMavenCache
145
+ paths :
146
+ - ~/.m2
160
147
workflows :
161
148
version : 2
162
149
build :
You can’t perform that action at this time.
0 commit comments