Skip to content

Commit

Permalink
Revert "alternative: disable post run save"
Browse files Browse the repository at this point in the history
This reverts commit 9d884a4.
  • Loading branch information
vd1992 committed Jul 18, 2022
1 parent 9d884a4 commit d51106d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/docker-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
# Use buildkit to speed up docker command
DOCKER_BUILDKIT: 1
steps:

# See: https://github.com/satackey/action-docker-layer-caching/issues/139#issuecomment-1007316528
- name: reclaim space on runner
run: rm -rf /usr/local/android /usr/share/dotnet /usr/local/share/boost /opt/ghc

- name: Checkout
uses: actions/[email protected]

Expand All @@ -48,7 +53,6 @@ jobs:
key: docker-{hash}
restore-keys: |
docker-
skip-save: 'true'
- name: Serve app via docker-compose
# Need to include --build as we're caching layers.
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
DOCKER_BUILDKIT: 1
NPM_VERSION: '8.3.0'
steps:

# See: https://github.com/satackey/action-docker-layer-caching/issues/139#issuecomment-1007316528
- name: reclaim space on runner
run: rm -rf /usr/local/android /usr/share/dotnet /usr/local/share/boost /opt/ghc

- name: Checkout
uses: actions/[email protected]

Expand All @@ -51,7 +56,6 @@ jobs:
key: docker-{hash}
restore-keys: |
docker-
skip-save: 'true'
- name: Serve app via docker-compose
# Need to include --build as we're caching layers.
Expand Down

0 comments on commit d51106d

Please sign in to comment.