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 \