Skip to content

Commit 37ff476

Browse files
committed
Remove github actions docker cache
1 parent 8e82d17 commit 37ff476

File tree

3 files changed

+0
-36
lines changed

3 files changed

+0
-36
lines changed

.github/workflows/deploy_production.yml

-12
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,6 @@ jobs:
5252
docker pull --quiet tiangolo/uvicorn-gunicorn-fastapi:python3.7
5353
docker pull --quiet node:14
5454
55-
# In this step, this action saves a list of existing images,
56-
# the cache is created without them in the post run.
57-
# It also restores the cache if it exists.
58-
# - name: Setup Docker Cache
59-
# uses: satackey/action-docker-layer-caching@v0.0.11
60-
# # Ignore the failure of a step and avoid terminating the job.
61-
# continue-on-error: true
62-
# with:
63-
# key: numerbay-docker-cache-prod-1-{hash}
64-
# restore-keys: |
65-
# numerbay-docker-cache-prod-1-
66-
6755
- name: Build and Push Production Images
6856
run: |
6957
export LD_LIBRARY_PATH=/usr/local/lib

.github/workflows/deploy_staging.yml

-12
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,6 @@ jobs:
4949
docker pull --quiet tiangolo/uvicorn-gunicorn-fastapi:python3.7
5050
docker pull --quiet node:12
5151
52-
# In this step, this action saves a list of existing images,
53-
# the cache is created without them in the post run.
54-
# It also restores the cache if it exists.
55-
- name: Setup Docker Cache
56-
uses: satackey/action-docker-layer-caching@v0.0.11
57-
# Ignore the failure of a step and avoid terminating the job.
58-
continue-on-error: true
59-
with:
60-
key: numerbay-docker-cache-stag-1-{hash}
61-
restore-keys: |
62-
numerbay-docker-cache-stag-1
63-
6452
- name: Build and Push Staging Images
6553
run: |
6654
export LD_LIBRARY_PATH=/usr/local/lib

.github/workflows/test.yml

-12
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,6 @@ jobs:
5454
docker pull --quiet tiangolo/uvicorn-gunicorn-fastapi:python3.7
5555
docker pull --quiet node:14
5656
57-
# In this step, this action saves a list of existing images,
58-
# the cache is created without them in the post run.
59-
# It also restores the cache if it exists.
60-
- name: Setup Docker Cache
61-
uses: satackey/action-docker-layer-caching@v0.0.11
62-
# Ignore the failure of a step and avoid terminating the job.
63-
continue-on-error: true
64-
with:
65-
key: numerbay-docker-cache-test-2-{hash}
66-
restore-keys: |
67-
numerbay-docker-cache-test-2-
68-
6957
- name: Test backend
7058
run: sh ./scripts/test.sh
7159
env:

0 commit comments

Comments
 (0)