From 6dd32f87267b2c8f3b012810e67ff6b872620a15 Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:02:02 -0300 Subject: [PATCH] Install ccache via gha --- .github/workflows/desktop-build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 366a20757..5830a3e02 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -285,11 +285,11 @@ jobs: with: submodules: recursive - - name: Install ccache and Ninja using Homebrew # (TODO: install them either via GHA or via vcpkg) - shell: bash - run: | - brew update - brew install ccache + - name: Setup Ccache + uses: jianmingyong/ccache-action@v1 + with: + install: true + install-type: "binary" - name: Install Qt ${{matrix.qt_version}} uses: jurplel/install-qt-action@v4