Skip to content

Commit

Permalink
fix: circle ci issue with missing cache failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jabrown85 committed Jun 10, 2020
1 parent 0fb0308 commit 9b4d93f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,14 @@ jobs:
- restore_cache:
key: v1-image-{{ .Environment.CIRCLE_SHA1 }}-pack-18-run.tar
- setup_remote_docker
- run: docker load < pack-18-build.tar
- run: docker load < pack-18-riff-build.tar
- run: |
if [ -f "pack-18-build.tar" ]; then
docker load < pack-18-build.tar
fi
- run: |
if [ -f "pack-18-riff-build.tar" ]; then
docker load < pack-18-riff-build.tar
fi
- run: docker load < pack-18-run.tar
- run: pack create-builder << parameters.image_tag >> --builder-config << parameters.builder_toml >> --no-pull
- run: docker save << parameters.image_tag >> > << parameters.image_file >>
Expand Down

0 comments on commit 9b4d93f

Please sign in to comment.