From 59cdac3193b5ebcbeeec7fa9e6c90e0b8d97cf65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sawicz?= Date: Mon, 15 Jul 2024 17:46:05 +0200 Subject: [PATCH] ci: fix coverage ccache max size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default suffix is GiB… --- .github/workflows/tics.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tics.yml b/.github/workflows/tics.yml index 0926e6708ff..5efe60247f5 100644 --- a/.github/workflows/tics.yml +++ b/.github/workflows/tics.yml @@ -44,7 +44,7 @@ jobs: - name: Ensure ccache size run: | # a full build yielded 180M cache - echo "max_size = 250" > ${CCACHE_DIR}/ccache.conf + echo "max_size = 250M" > ${CCACHE_DIR}/ccache.conf - name: Install dependencies run: |