From 05fbc1e75af77b43b4534f0845fdc05dfeb29abf Mon Sep 17 00:00:00 2001 From: Evgeny Safronov Date: Fri, 10 Jan 2025 13:31:40 +0300 Subject: [PATCH] refactor: try to add ccache to build action (#11) --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e4379a..31b4ea5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,10 @@ jobs: - uses: actions/checkout@v4 with: submodules: true + - uses: hendrikmuhs/ccache-action@v1.2.11 + name: ccache + with: + key: ${{ runner.os }}-build-cache - run: | meson setup build -Dbuildtype=debug meson compile -C build