From 28594a23ffc63c509eb39bd346c448f516670160 Mon Sep 17 00:00:00 2001 From: silverqx Date: Thu, 11 Apr 2024 15:51:43 +0200 Subject: [PATCH] workflows disabled steps --- .github/workflows/vcpkg-linux.yml | 3 +++ .github/workflows/vcpkg-windows.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/vcpkg-linux.yml b/.github/workflows/vcpkg-linux.yml index 1a7519325..17344bbfe 100644 --- a/.github/workflows/vcpkg-linux.yml +++ b/.github/workflows/vcpkg-linux.yml @@ -368,7 +368,10 @@ jobs: cache_path: ${{ steps.ccache-initialize-cache.outputs.CachePath }} image_os: ${{ steps.ccache-initialize-cache.outputs.ImageOS }} + # I'm managing the ccache configuration manually on self-hosted runners using the ccache.conf + # because it's or will be used by more actions. - name: Ccache prepare configuration 🥳 + if: env.TinyIsSelfHostedRunner == 'false' run: | # ~ 490 * 3 + 100 ccache --set-config max_size=1600M diff --git a/.github/workflows/vcpkg-windows.yml b/.github/workflows/vcpkg-windows.yml index 2f16d0d7d..8b0631a58 100644 --- a/.github/workflows/vcpkg-windows.yml +++ b/.github/workflows/vcpkg-windows.yml @@ -331,7 +331,10 @@ jobs: cache_path: ${{ steps.ccache-initialize-cache.outputs.CachePath }} image_os: ${{ steps.ccache-initialize-cache.outputs.ImageOS }} + # I'm managing the ccache configuration manually on self-hosted runners using the ccache.conf + # because it's used by more actions. - name: Ccache prepare configuration 🥳 + if: env.TinyIsSelfHostedRunner == 'false' run: | # ~ 70 * 3 + 100 ccache.exe --set-config max_size=500M