From 388bd6b7e449331a8f8f5681ac5b272a8df24592 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 2 Apr 2024 21:15:41 +0200 Subject: [PATCH] CI: Disable ccache on Windows (where it currently fails). --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c43d4d985..a12c38a56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,6 +172,7 @@ jobs: - name: ccache uses: hendrikmuhs/ccache-action@v1.2 + if: runner.os == 'Linux' || runner.os == 'macOS' with: max_size: 950M create-symlink: true