From 05cad57e63e8e000445c48b5c8e97cec99c2be13 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Sun, 29 Dec 2024 13:34:50 +0100 Subject: [PATCH] CI: cache macos libs --- .github/workflows/binaries.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/binaries.yaml b/.github/workflows/binaries.yaml index c584f0b1..b52102df 100644 --- a/.github/workflows/binaries.yaml +++ b/.github/workflows/binaries.yaml @@ -78,6 +78,13 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive + - name: Cache/restore macosx-libs + uses: actions/cache@v4 + with: + key: libs-${{ runner.os }}-${{ runner.arch }}-${{ env.cache-name }}-${{ hashFiles('macosx/*.sh') }} + path: | + macosx/build + macosx/libs - name: Build RELEASE run: make native CONF=RELEASE -j3 - name: Run tests