Skip to content

Commit

Permalink
[test] Disable CircleCI cache (#12573)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Aug 18, 2018
1 parent 96d2c38 commit c96ce73
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@ defaults: &defaults
docker:
- image: circleci/node:9.10
restore_repo: &restore_repo
restore_cache:
keys:
- v1-repo-{{ .Branch }}-{{ .Revision }}
# The cache logic of CircleCI has been disabled for Security reasons.
# We can no longer use it.
# restore_cache:
# keys:
# - v1-repo-{{ .Branch }}-{{ .Revision }}
run:
name: Install js dependencies
command: yarn
version: 2
jobs:
checkout:
<<: *defaults
steps:
- *restore_repo
- checkout
- *restore_repo
- run:
name: Check versions and env
command: |
Expand Down Expand Up @@ -41,6 +46,7 @@ jobs:
test_unit:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: Lint
Expand All @@ -67,6 +73,7 @@ jobs:
test_material-ui-x:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: material-ui-icons
Expand Down Expand Up @@ -135,6 +142,7 @@ jobs:
docker:
- image: circleci/node:9.10
steps:
- checkout
- *restore_repo
- run:
name: Can we generate the material-ui build?
Expand All @@ -148,6 +156,7 @@ jobs:
test_browser:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: Can we generate the api of the docs?
Expand All @@ -168,6 +177,7 @@ jobs:
- image: circleci/node:9.10
- image: selenium/standalone-chrome:3.11.0
steps:
- checkout
- *restore_repo
- run:
name: Visual regression tests
Expand Down

0 comments on commit c96ce73

Please sign in to comment.