Skip to content

Commit ff043ab

Browse files
author
Ives van Hoorne
committed
Purge CircleCI caches
1 parent 7cdf23b commit ff043ab

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.circleci/config.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ jobs:
99
- checkout
1010
- restore_cache:
1111
keys:
12-
- v6-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
13-
- v6-dependency-cache-{{ .Branch }}
14-
- v6-dependency-cache
12+
- v7-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
13+
- v7-dependency-cache-{{ .Branch }}
14+
- v7-dependency-cache
1515
- restore_cache:
1616
keys:
17-
- v6-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
18-
- v6-standalone-dependency-cache-{{ .Branch }}
19-
- v6-standalone-dependency-cache
17+
- v7-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
18+
- v7-standalone-dependency-cache-{{ .Branch }}
19+
- v7-standalone-dependency-cache
2020
- run:
2121
name: Install Dependencies
2222
command: yarn install
2323
- save_cache:
24-
key: v6-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
24+
key: v7-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
2525
paths:
2626
- node_modules
2727
- packages/app/node_modules
@@ -31,14 +31,14 @@ jobs:
3131
- packages/react-sandpack/node_modules
3232
- packages/sandpack/node_modules
3333
- save_cache:
34-
key: v6-standalone-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
34+
key: v7-standalone-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
3535
paths:
3636
- standalone-packages/codesandbox-browserfs/node_modules
3737
- run:
3838
name: Build
3939
command: yarn build:dependents
4040
- save_cache:
41-
key: v6-repo-{{ .Environment.CIRCLE_SHA1 }}
41+
key: v7-repo-{{ .Environment.CIRCLE_SHA1 }}
4242
paths:
4343
- ~/codesandbox-client
4444

@@ -48,19 +48,19 @@ jobs:
4848
working_directory: ~/codesandbox-client
4949
steps:
5050
- restore_cache:
51-
key: v6-repo-{{ .Environment.CIRCLE_SHA1 }}
51+
key: v7-repo-{{ .Environment.CIRCLE_SHA1 }}
5252
# We do this to compare sizes from these builds with master
5353
- restore_cache:
54-
key: v6-prod-app-build-cache-master
54+
key: v7-prod-app-build-cache-master
5555
- run:
5656
name: Build Application
5757
command: yarn build:prod
5858
- save_cache:
59-
key: v6-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
59+
key: v7-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
6060
paths:
6161
- ./packages/app/www
6262
- save_cache:
63-
key: v6-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
63+
key: v7-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
6464
paths:
6565
- ./www
6666
- store_artifacts:
@@ -73,7 +73,7 @@ jobs:
7373
working_directory: ~/codesandbox-client
7474
steps:
7575
- restore_cache:
76-
key: v6-repo-{{ .Environment.CIRCLE_SHA1 }}
76+
key: v7-repo-{{ .Environment.CIRCLE_SHA1 }}
7777
- run:
7878
name: Start Test Server
7979
command: yarn start:test
@@ -101,7 +101,7 @@ jobs:
101101
working_directory: ~/codesandbox-client
102102
steps:
103103
- restore_cache:
104-
key: v6-repo-{{ .Environment.CIRCLE_SHA1 }}
104+
key: v7-repo-{{ .Environment.CIRCLE_SHA1 }}
105105
- run:
106106
name: Test
107107
command: yarn test --ci --testResultsProcessor="jest-junit"
@@ -114,7 +114,7 @@ jobs:
114114
working_directory: ~/codesandbox-client
115115
steps:
116116
- restore_cache:
117-
key: v6-repo-{{ .Environment.CIRCLE_SHA1 }}
117+
key: v7-repo-{{ .Environment.CIRCLE_SHA1 }}
118118
- run:
119119
name: Lint
120120
command: yarn lint
@@ -124,7 +124,7 @@ jobs:
124124
working_directory: ~/codesandbox-client
125125
steps:
126126
- restore_cache:
127-
key: v6-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
127+
key: v7-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
128128
- run:
129129
name: Docker Sign In
130130
command: echo $DOCKER_PWD | docker login -u $DOCKER_USER --password-stdin

0 commit comments

Comments
 (0)