From 46a3a4f7e320d6f99f660f179ab01f778973b9db Mon Sep 17 00:00:00 2001 From: Li Jie Date: Sat, 15 Feb 2025 19:30:07 +0800 Subject: [PATCH] ci: disable populate cache --- .github/workflows/release-build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 2be526a9..281e11b2 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -11,18 +11,9 @@ jobs: steps: - name: Check out code uses: actions/checkout@v4 - - name: Cache Darwin sysroot - id: cache-sysroot - uses: actions/cache@v4 - with: - path: | - .sysroot/darwin.tar.gz - key: darwin-sysroot-${{ runner.os }}-${{ hashFiles('.github/workflows/populate_darwin_sysroot.sh') }} - name: Populate Darwin sysroot - if: steps.cache-sysroot.outputs.cache-hit != 'true' run: bash .github/workflows/populate_darwin_sysroot.sh - name: Create Darwin sysroot tarball - if: steps.cache-sysroot.outputs.cache-hit != 'true' run: tar -czvf .sysroot/darwin.tar.gz -C .sysroot darwin - name: Upload Darwin sysroot tarball uses: actions/upload-artifact@v4