diff options
-rw-r--r-- | .github/workflows/bun-mac-aarch64.yml | 2 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64-baseline.yml | 3 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64.yml | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/bun-mac-aarch64.yml b/.github/workflows/bun-mac-aarch64.yml index 6ec3ad0b0..6cc9f81f7 100644 --- a/.github/workflows/bun-mac-aarch64.yml +++ b/.github/workflows/bun-mac-aarch64.yml @@ -155,6 +155,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 with: key: ${{ runner.os }}-ccache-${{ matrix.tag }} + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }} - name: Download WebKit if: matrix.compile_obj env: @@ -270,6 +271,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-link + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-link - name: Download WebKit env: CPU_TARGET: ${{ matrix.cpu }} diff --git a/.github/workflows/bun-mac-x64-baseline.yml b/.github/workflows/bun-mac-x64-baseline.yml index 9c000e31e..fd500517e 100644 --- a/.github/workflows/bun-mac-x64-baseline.yml +++ b/.github/workflows/bun-mac-x64-baseline.yml @@ -156,11 +156,13 @@ jobs: if: matrix.dependencies with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-dependencies + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-dependencies - name: ccache (c++) uses: hendrikmuhs/ccache-action@v1.2 if: matrix.compile_obj with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-obj + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-obj - name: Download WebKit if: matrix.compile_obj env: @@ -270,6 +272,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-link + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-link - name: Download WebKit env: CPU_TARGET: ${{ matrix.cpu }} diff --git a/.github/workflows/bun-mac-x64.yml b/.github/workflows/bun-mac-x64.yml index 7d2087be9..20146ab75 100644 --- a/.github/workflows/bun-mac-x64.yml +++ b/.github/workflows/bun-mac-x64.yml @@ -169,11 +169,13 @@ jobs: if: matrix.dependencies with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-dependencies + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-dependencies - name: ccache (c++) uses: hendrikmuhs/ccache-action@v1.2 if: matrix.compile_obj with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-obj + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-obj - name: Compile dependencies if: matrix.dependencies env: @@ -301,6 +303,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 with: key: ${{ runner.os }}-ccache-${{ matrix.tag }}-link + restore-keys: ${{ runner.os }}-ccache-${{ matrix.tag }}-link - name: Link env: CPU_TARGET: ${{ matrix.cpu }} |