1
0
Fork 0

ci: set kernel cache limit to 128, disable cache on packages fetch

timestamps
dump_stack() 2023-05-28 20:51:36 +00:00
parent 487b9c520d
commit a748778b72
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 2 additions and 2 deletions

View File

@ -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