mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
CI: Restore cache action checks on inputs.ccache_path
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
These got removed by accident.
This commit is contained in:
parent
573696b10f
commit
86c8dbbf90
Notes:
github-actions[bot]
2025-06-18 16:59:27 +00:00
Author: https://github.com/gmta
Commit: 86c8dbbf90
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5136
Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 4 additions and 0 deletions
2
.github/actions/cache-restore/action.yml
vendored
2
.github/actions/cache-restore/action.yml
vendored
|
@ -59,6 +59,7 @@ runs:
|
|||
- name: 'Compiler Cache'
|
||||
uses: actions/cache/restore@v4
|
||||
id: 'ccache'
|
||||
if: ${{ inputs.ccache_path != '' }}
|
||||
with:
|
||||
path: ${{ inputs.ccache_path }}
|
||||
key: '"ccache" | "${{ inputs.os }}" | "${{ inputs.arch }}" | "${{ inputs.toolchain }}" | "${{ inputs.cache_key_extra }}" | "${{ inputs.ccache_version }}" | ${{ steps.date-stamp.outputs.timestamp }}'
|
||||
|
@ -79,6 +80,7 @@ runs:
|
|||
|
||||
- name: 'Restore vcpkg cache'
|
||||
uses: actions/cache/restore@v4
|
||||
if: ${{ inputs.vcpkg_cache_path != '' }}
|
||||
id: 'vcpkg'
|
||||
with:
|
||||
path: ${{ inputs.vcpkg_cache_path }}
|
||||
|
|
2
.github/actions/cache-save/action.yml
vendored
2
.github/actions/cache-save/action.yml
vendored
|
@ -38,6 +38,7 @@ runs:
|
|||
|
||||
- name: 'Compiler Cache'
|
||||
uses: actions/cache/save@v4
|
||||
if: ${{ inputs.ccache_path != '' }}
|
||||
with:
|
||||
path: ${{ inputs.ccache_path }}
|
||||
key: ${{ inputs.ccache_primary_key }}
|
||||
|
@ -50,6 +51,7 @@ runs:
|
|||
|
||||
- name: 'vcpkg binary cache'
|
||||
uses: actions/cache/save@v4
|
||||
if: ${{ inputs.vcpkg_cache_path != '' }}
|
||||
with:
|
||||
path: ${{ inputs.vcpkg_cache_path }}
|
||||
key: ${{ inputs.vcpkg_cache_primary_key }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue