From a748778b72abbc475e9b6f4cb16d4905fc01e00e Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 28 May 2023 20:51:36 +0000 Subject: [PATCH] ci: set kernel cache limit to 128, disable cache on packages fetch --- .github/workflows/debian-cache.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debian-cache.yml b/.github/workflows/debian-cache.yml index e639443..32ab3ef 100644 --- a/.github/workflows/debian-cache.yml +++ b/.github/workflows/debian-cache.yml @@ -25,7 +25,7 @@ jobs: run: go build - name: Cache - run: ./out-of-tree --log-level=trace distro debian cache --refetch=0 --limit=64 + run: ./out-of-tree --log-level=trace distro debian cache --refetch=0 --limit=128 - name: Install s3cmd run: sudo apt install s3cmd @@ -71,7 +71,7 @@ jobs: def get_kernels() -> bool: status, output = getstatusoutput( - "./out-of-tree distro debian fetch --max=16" + "./out-of-tree distro debian fetch --max=16 --limit=1" ) logging.info(output) return status == 0