From 50aae2212317263ddbbe51522d86812fa0f20ae0 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Thu, 13 Feb 2025 15:18:25 +0100 Subject: [PATCH] Update cache settings --- .gitea/workflows/build_pc.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build_pc.yml b/.gitea/workflows/build_pc.yml index 3ee09f4..1cd5cf8 100644 --- a/.gitea/workflows/build_pc.yml +++ b/.gitea/workflows/build_pc.yml @@ -30,7 +30,7 @@ jobs: path: | ${{github.workspace}}/build/cmake_checks_cache.txt ${{github.workspace}}/build/CMakeFiles/**/CMake*.cmake - key: ${{runner.os}}-cmake-checks + key: openvulkano-${{matrix.os}}-cmake-checks - name: Configure CMake shell: bash @@ -82,6 +82,14 @@ jobs: uses: actions/checkout@v4 with: submodules: true + - name: Action Cache + uses: actions/cache@v4 + id: cache + with: + path: | + ${{github.workspace}}/build/cmake_checks_cache.txt + ${{github.workspace}}/build/CMakeFiles/**/CMake*.cmake + key: openvulkano-ios-cmake-checks - name: Configure CMake run: mkdir cmake-build && mkdir cmake-build/iOS && cd cmake-build/iOS && cmake ../.. -G Xcode -DPLATFORM=OS64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build & Archive