-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4108 from GCTC-NTGC/bug/4035-disable-docker-cache…
…-action Disable docker layer caching in github action
- Loading branch information
Showing
1 changed file
with
2 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,18 +44,8 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
# This uses GitHub Action cache for docker container layers | ||
# See: https://github.com/marketplace/actions/docker-layer-caching | ||
- uses: satackey/[email protected] | ||
# Ignore a failure of this step and avoid terminating the job. | ||
continue-on-error: true | ||
# By default, this cache is keyed to the workflow name. We ar | ||
# setting a shared key for the docker cache to be shared | ||
# across multiple workflows. | ||
with: | ||
key: docker-{hash} | ||
restore-keys: | | ||
docker- | ||
# We no longer user docker layer caching as it made runs take longer. | ||
# See: https://github.com/satackey/action-docker-layer-caching/issues/305 | ||
|
||
- name: Serve app via docker-compose | ||
# Need to include --build as we're caching layers. | ||
|