You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Need maven dependency cache, otherwise checkstyle tests fail as such:
115
174
# Failed to execute goal on project spark-assembly_2.11: Could not resolve dependencies for project org.apache.spark:spark-assembly_2.11:pom:2.4.0-SNAPSHOT
116
175
- restore_cache:
@@ -126,7 +185,7 @@ jobs:
126
185
<<: *test-defaults
127
186
resource_class: small
128
187
steps:
129
-
- checkout
188
+
- *checkout-code
130
189
- restore_cache:
131
190
key: build-maven-{{ .Branch }}-{{ .BuildNum }}
132
191
- restore_cache:
@@ -147,7 +206,7 @@ jobs:
147
206
- v1-build-sbt-{{ .Branch }}-{{ .Revision }}
148
207
- v1-build-sbt-{{ .Branch }}-
149
208
- v1-build-sbt-master-
150
-
- checkout
209
+
- *checkout-code
151
210
- run:
152
211
name: Hard link cache contents into current build directory
153
212
command: |
@@ -197,7 +256,7 @@ jobs:
197
256
# depends on build-sbt
198
257
<<: *defaults
199
258
steps:
200
-
- checkout
259
+
- *checkout-code
201
260
- attach_workspace:
202
261
at: .
203
262
- *restore-ivy-cache
@@ -217,7 +276,7 @@ jobs:
217
276
- image: palantirtechnologies/circle-spark-python
218
277
parallelism: 2
219
278
steps:
220
-
- checkout
279
+
- *checkout-code
221
280
# These two steps restore all the target directories except jars
222
281
# Necessary because of SPARK_PREPEND_CLASSES being used in python tests, and some python tests
223
282
# accessing classes from the core/test configuration.
@@ -241,7 +300,7 @@ jobs:
241
300
docker:
242
301
- image: palantirtechnologies/circle-spark-r
243
302
steps:
244
-
- checkout
303
+
- *checkout-code
245
304
- attach_workspace:
246
305
at: .
247
306
- run:
@@ -262,7 +321,7 @@ jobs:
262
321
- run:
263
322
name: Before running tests, ensure we created the CIRCLE_TEST_REPORTS directory
264
323
command: mkdir -p $CIRCLE_TEST_REPORTS
265
-
- checkout
324
+
- *checkout-code
266
325
- attach_workspace:
267
326
at: .
268
327
# These two steps restore all the target directories except jars
0 commit comments