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

These got removed by accident.
This commit is contained in:
Jelle Raaijmakers 2025-06-18 18:49:26 +02:00 committed by Jelle Raaijmakers
commit 86c8dbbf90
Notes: github-actions[bot] 2025-06-18 16:59:27 +00:00
2 changed files with 4 additions and 0 deletions

View file

@ -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 }}

View file

@ -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 }}