CI: Remove download_cache_path argument from cache restore action

It used to be for CLDR, UCD, etc. downloads. But it is now unused.
This commit is contained in:
Timothy Flynn
2026-02-18 10:21:52 -05:00
committed by Tim Flynn
parent 53bcbe411f
commit 85c6264323
Notes: github-actions[bot] 2026-02-18 17:23:45 +00:00
5 changed files with 3 additions and 11 deletions

View File

@@ -30,10 +30,6 @@ inputs:
description: 'Path to the ccache directory'
required: false
default: ''
download_cache_path:
description: 'Path to the download cache directory'
required: false
default: 'caches'
vcpkg_cache_path:
description: 'Path to vcpkg binary cache'
required: false
@@ -87,13 +83,13 @@ runs:
CCACHE_DIR: ${{ inputs.ccache_path }}
run: |
ccache -M 0
# Reset all ccache modification dates to a known epoch. This provides a baseline that we can prune against.
Get-ChildItem -Path "${{ inputs.ccache_path }}" -Recurse | Sort-Object FullName -Descending | ForEach-Object {
Get-ChildItem -Path "${{ inputs.ccache_path }}" -Recurse | Sort-Object FullName -Descending | ForEach-Object {
$_.LastWriteTime = [DateTime]::Parse("2018-10-10T09:53:07Z")
$_.LastAccessTime = [DateTime]::Parse("2018-10-10T09:53:07Z")
}
ccache -s
ccache -z

View File

@@ -78,7 +78,6 @@ jobs:
arch: ${{ matrix.arch }}
cache_key_extra: 'LibJS and LibWasm Artifacts'
ccache_path: ${{ env.CCACHE_DIR }}
download_cache_path: ${{ github.workspace }}/Build/caches
vcpkg_cache_path: ${{ github.workspace }}/Build/caches/vcpkg-binary-cache
- name: Create build directory Ubuntu

View File

@@ -107,7 +107,6 @@ jobs:
toolchain: ${{ inputs.toolchain }}
cache_key_extra: ${{ inputs.os_name == 'Windows' && inputs.build_preset || steps.build-parameters.outputs.ccache_key }}
ccache_path: ${{ env.CCACHE_DIR }}
download_cache_path: ${{ github.workspace }}/Build/caches
vcpkg_cache_path: ${{ github.workspace }}/Build/caches/vcpkg-binary-cache
- name: Set dynamic environment variables

View File

@@ -85,7 +85,6 @@ jobs:
runner_labels: '["test262-runner"]'
os: 'Linux'
arch: 'Lagom'
download_cache_path: ${{ github.workspace }}/libjs-test262/Build/caches
- name: Get previous results
run: |

View File

@@ -54,7 +54,6 @@ jobs:
arch: 'Lagom'
cache_key_extra: 'Nightly Android'
ccache_path: ${{ env.CCACHE_DIR }}
download_cache_path: ${{ github.workspace }}/Build/caches
vcpkg_cache_path: ${{ github.workspace }}/Build/caches/vcpkg-binary-cache
- name: Assign Build Parameters