diff options
author | 2022-11-24 04:58:37 -0800 | |
---|---|---|
committer | 2022-11-24 04:58:37 -0800 | |
commit | 0ef25c65ecda54c38064f2e698bb80d642431fbe (patch) | |
tree | 0bb69fb9f1c6d0407e12df5ace1964b30fa1bae4 | |
parent | b0c89baac755195393ae182a1ee1a6e7b22f54b9 (diff) | |
download | bun-0ef25c65ecda54c38064f2e698bb80d642431fbe.tar.gz bun-0ef25c65ecda54c38064f2e698bb80d642431fbe.tar.zst bun-0ef25c65ecda54c38064f2e698bb80d642431fbe.zip |
Add missing keys
-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 }} |