From 85ecb42d526c732a9cebb28c91c8f6cfa1087876 Mon Sep 17 00:00:00 2001 From: Thilo Molitor Date: Mon, 27 Jan 2025 01:06:23 +0100 Subject: [PATCH] Deactivate experimental github caching --- .github/workflows/develop-push.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/develop-push.yml b/.github/workflows/develop-push.yml index 0d6854514..28d9d1918 100644 --- a/.github/workflows/develop-push.yml +++ b/.github/workflows/develop-push.yml @@ -54,19 +54,19 @@ jobs: echo "#define ALPHA_COMMIT_HASH \"$(git show-ref --hash --abbrev refs/heads/develop)\"" > Monal/Classes/commitHash.h - name: Make our build scripts executable run: chmod +x ./scripts/build.sh - - name: Cache Rust build artifacts - uses: actions/cache@v4 - with: - key: rust-cache-target-${{ github.workflow }}-${{ github.sha }} - restore-keys: rust-cache-target-${{ github.workflow }}- - path: | - ./rust/target - - name: Cache XCode derived data - uses: irgaly/xcode-cache@v1 - with: - delete-used-deriveddata-cache: true - key: xcode-cache-deriveddata-${{ github.workflow }}-${{ github.sha }} - restore-keys: xcode-cache-deriveddata-${{ github.workflow }}- + # - name: Cache Rust build artifacts + # uses: actions/cache@v4 + # with: + # key: rust-cache-target-${{ github.workflow }}-${{ github.sha }} + # restore-keys: rust-cache-target-${{ github.workflow }}- + # path: | + # ./rust/target + # - name: Cache XCode derived data + # uses: irgaly/xcode-cache@v1 + # with: + # delete-used-deriveddata-cache: true + # key: xcode-cache-deriveddata-${{ github.workflow }}-${{ github.sha }} + # restore-keys: xcode-cache-deriveddata-${{ github.workflow }}- - name: Run build run: ./scripts/build.sh - run: |