Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Cache more often.
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Oct 25, 2024
1 parent 9072f70 commit 11e974e
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,22 @@ jobs:

- name: Cache SCons cache
uses: actions/cache@v4
if: always()
with:
path: |
.scons_cache
emsdk
osxcross
jdk
android_sdk
vulkan_sdk
mingw
key: ${{ runner.os }}-scons-${{ matrix.platform }}-${{ matrix.target }}
path: |
.scons_cache
emsdk
osxcross
jdk
android_sdk
vulkan_sdk
mingw
key: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}-${{ matrix.platform }}-${{ matrix.target }}
restore-keys: |
${{ runner.os }}-scons-${{ matrix.platform }}-${{ matrix.target }}
${{ runner.os }}-scons-
${{ runner.os }}
${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}-${{ matrix.platform }}-${{ matrix.target }}
${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}-${{ matrix.platform }}
${{ matrix.platform }}-${{ matrix.target }}
${{ matrix.platform }}
- uses: bencherdev/bencher@main

Expand Down

0 comments on commit 11e974e

Please sign in to comment.