Skip to content

Commit 48df9be

Browse files
author
Sergei Parshev
authored
CircleCI not supporting caching on free tier anymore (#44)
CircleCI tightening their free plan and seems soon will be useless...
1 parent 3d4ff63 commit 48df9be

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

.circleci/config.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,21 @@ jobs:
3535
steps:
3636
- checkout
3737

38+
# CircleCI cache now not free
3839
# Download and cache dependencies
39-
- restore_cache:
40-
keys:
41-
- v1-dependencies-{{ checksum "pom.xml" }}
42-
# fallback to using the latest cache if no exact match is found
43-
- v1-dependencies-
40+
#- restore_cache:
41+
# keys:
42+
# - v1-dependencies-{{ checksum "pom.xml" }}
43+
# # fallback to using the latest cache if no exact match is found
44+
# - v1-dependencies-
4445

4546
- run: mvn -B dependency:go-offline
4647

47-
- save_cache:
48-
paths:
49-
- ~/.m2
50-
key: v1-dependencies-{{ checksum "pom.xml" }}
48+
# CircleCI cache now not free
49+
#- save_cache:
50+
# paths:
51+
# - ~/.m2
52+
# key: v1-dependencies-{{ checksum "pom.xml" }}
5153

5254
# Executing build
5355
- run:
@@ -89,8 +91,9 @@ jobs:
8991
name: Get the jenkinsBro repo
9092
command: git clone https://github.com/rabits/jenkinsbro ~/jenkinsbro
9193

92-
- setup_remote_docker:
93-
docker_layer_caching: true
94+
- setup_remote_docker
95+
# CircleCI cache now not free
96+
# docker_layer_caching: true
9497

9598
- run:
9699
name: Build jenkins image

0 commit comments

Comments
 (0)