summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEmilien Devos <contact@emiliendevos.be>2021-08-24 23:20:39 +0200
committerEmilien Devos <contact@emiliendevos.be>2021-08-24 23:20:39 +0200
commit5c74196f608b1ebe2bdecb5ca844d949a90a22e4 (patch)
tree369a74b4fe7e969e0332cc2ada0523b1ffe85b8c /.github
parent33724d40a81f174303f3881a4d185270c441ac6a (diff)
downloadinvidious-5c74196f608b1ebe2bdecb5ca844d949a90a22e4.tar.gz
invidious-5c74196f608b1ebe2bdecb5ca844d949a90a22e4.tar.bz2
invidious-5c74196f608b1ebe2bdecb5ca844d949a90a22e4.zip
remove docker cache on the CI test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4fa27ab0..fa6f9e33 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -106,29 +106,14 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- - name: Cache Docker layers
- uses: actions/cache@v2
- with:
- path: /tmp/.buildx-cache
- key: ${{ runner.os }}-multi-buildx-${{ github.sha }}
- restore-keys: |
- ${{ runner.os }}-multi-buildx
-
- name: Build Docker ARM64 image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile.arm64
platforms: linux/arm64/v8
- cache-from: type=local,src=/tmp/.buildx-cache
- cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new
- name: Test Docker
run: while curl -Isf http://localhost:3000; do sleep 1; done
- - name: Override old Docker cache
- run: |
- rm -rf /tmp/.buildx-cache
- mv /tmp/.buildx-cache-new /tmp/.buildx-cache
-