Skip to content

Commit d271f29

Browse files
committed
Remove cache
1 parent 45e4ca7 commit d271f29

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-
- v12-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
13-
- v12-dependency-cache-{{ .Branch }}
14-
- v12-dependency-cache
12+
- v13-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
13+
- v13-dependency-cache-{{ .Branch }}
14+
- v13-dependency-cache
1515
- restore_cache:
1616
keys:
17-
- v12-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
18-
- v12-standalone-dependency-cache-{{ .Branch }}
19-
- v12-standalone-dependency-cache
17+
- v13-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
18+
- v13-standalone-dependency-cache-{{ .Branch }}
19+
- v13-standalone-dependency-cache
2020
- run:
2121
name: Install Dependencies
2222
command: yarn install
2323
- save_cache:
24-
key: v12-dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
24+
key: v13-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: v12-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
34+
key: v13-standalone-dependency-cache-{{ .Branch }}-{{ checksum "standalone-packages/codesandbox-browserfs/yarn.lock" }}
3535
paths:
3636
- standalone-packages/codesandbox-browserfs/node_modules
3737
- run:
3838
name: Build
3939
command: yarn build:deps
4040
- save_cache:
41-
key: v12-repo-{{ .Environment.CIRCLE_SHA1 }}
41+
key: v13-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: v12-repo-{{ .Environment.CIRCLE_SHA1 }}
51+
key: v13-repo-{{ .Environment.CIRCLE_SHA1 }}
5252
# We do this to compare sizes from these builds with master
5353
- restore_cache:
54-
key: v12-prod-app-build-cache-master
54+
key: v13-prod-app-build-cache-master
5555
- run:
5656
name: Build Application
5757
command: yarn build:prod
5858
- save_cache:
59-
key: v12-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
59+
key: v13-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
6060
paths:
6161
- ./packages/app/www
6262
- save_cache:
63-
key: v12-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
63+
key: v13-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
6464
paths:
6565
- ./www
6666

@@ -70,7 +70,7 @@ jobs:
7070
working_directory: ~/codesandbox-client
7171
steps:
7272
- restore_cache:
73-
key: v12-repo-{{ .Environment.CIRCLE_SHA1 }}
73+
key: v13-repo-{{ .Environment.CIRCLE_SHA1 }}
7474
- run:
7575
name: Start Test Server
7676
command: yarn start:test
@@ -98,7 +98,7 @@ jobs:
9898
working_directory: ~/codesandbox-client
9999
steps:
100100
- restore_cache:
101-
key: v12-repo-{{ .Environment.CIRCLE_SHA1 }}
101+
key: v13-repo-{{ .Environment.CIRCLE_SHA1 }}
102102
- run:
103103
name: Test
104104
command: yarn test --ci --testResultsProcessor="jest-junit"
@@ -111,7 +111,7 @@ jobs:
111111
working_directory: ~/codesandbox-client
112112
steps:
113113
- restore_cache:
114-
key: v12-repo-{{ .Environment.CIRCLE_SHA1 }}
114+
key: v13-repo-{{ .Environment.CIRCLE_SHA1 }}
115115
- run:
116116
name: Lint
117117
command: yarn lint
@@ -122,7 +122,7 @@ jobs:
122122
steps:
123123
- checkout
124124
- restore_cache:
125-
key: v12-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
125+
key: v13-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }}
126126
- run:
127127
name: Docker Sign In
128128
command: '[ -n "$DOCKER_USER" ] && echo $DOCKER_PWD | docker login -u $DOCKER_USER --password-stdin || true'

0 commit comments

Comments
 (0)