Update cache settings

This commit is contained in:
Georg Hagen
2025-02-13 15:18:25 +01:00
parent 42628169c8
commit 50aae22123

View File

@@ -30,7 +30,7 @@ jobs:
path: | path: |
${{github.workspace}}/build/cmake_checks_cache.txt ${{github.workspace}}/build/cmake_checks_cache.txt
${{github.workspace}}/build/CMakeFiles/**/CMake*.cmake ${{github.workspace}}/build/CMakeFiles/**/CMake*.cmake
key: ${{runner.os}}-cmake-checks key: openvulkano-${{matrix.os}}-cmake-checks
- name: Configure CMake - name: Configure CMake
shell: bash shell: bash
@@ -82,6 +82,14 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
submodules: true 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 - 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}} 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 - name: Build & Archive