From 68f61a7c51447e9f3159aba5e6de8c6a4fad8a0a Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 23 Mar 2024 01:39:37 +0100 Subject: [PATCH] [github] Fixed failed iOS action due to removed repo dependency Signed-off-by: Alexander Borsuk --- .github/workflows/ios-check.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ios-check.yaml b/.github/workflows/ios-check.yaml index 4c52699f32..fb6e4e9ce0 100644 --- a/.github/workflows/ios-check.yaml +++ b/.github/workflows/ios-check.yaml @@ -62,17 +62,17 @@ jobs: shell: bash run: ./configure.sh - - name: Configure ccache - uses: mikehardy/buildcache-action@v2.1.0 + - name: Configure XCode cache + uses: irgaly/xcode-cache@v1 with: - cache_key: ${{ github.workflow }}-${{ matrix.buildType }} + key: xcode-cache-deriveddata-${{ github.workflow }}-${{ matrix.buildType }}-${{ github.sha }} + restore-keys: xcode-cache-deriveddata-${{ github.workflow }}-${{ matrix.buildType }} - name: Compile shell: bash # Check for compilation errors. run: | xcodebuild \ - CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ \ -workspace xcode/omim.xcworkspace \ -scheme OMaps \ -configuration ${{ matrix.buildType }} build \