Skip to content

Commit

Permalink
Disabled docker_layer_caching (django-cms#32)
Browse files Browse the repository at this point in the history
The changes in this PR enables the CI to work again.
  • Loading branch information
adam-murray authored and Aiky30 committed Jan 28, 2020
1 parent 26470c6 commit 3ed4ad8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ py34default: &py34default
- image: circleci/python:3.4
steps:
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- checkout
- attach_workspace:
at: /tmp/images
Expand All @@ -17,7 +17,7 @@ py35default: &py35default
- image: circleci/python:3.5
steps:
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- checkout
- attach_workspace:
at: /tmp/images
Expand All @@ -29,7 +29,7 @@ py36default: &py36default
- image: circleci/python:3.6
steps:
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- checkout
- attach_workspace:
at: /tmp/images
Expand All @@ -55,7 +55,7 @@ jobs:
steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=3.4 -t py34 .
- run: mkdir images
- run: docker save -o images/py34.tar py34
Expand All @@ -68,7 +68,7 @@ jobs:
steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=3.5 -t py35 .
- run: mkdir images
- run: docker save -o images/py35.tar py35
Expand All @@ -81,7 +81,7 @@ jobs:
steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true
docker_layer_caching: false
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=3.6 -t py36 .
- run: mkdir images
- run: docker save -o images/py36.tar py36
Expand Down

0 comments on commit 3ed4ad8

Please sign in to comment.