mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
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:
Notes:
github-actions[bot]
2026-02-18 17:23:45 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/85c6264323b Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8018
10
.github/actions/cache-restore/action.yml
vendored
10
.github/actions/cache-restore/action.yml
vendored
@@ -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
|
||||
|
||||
|
||||
1
.github/workflows/js-and-wasm-artifacts.yml
vendored
1
.github/workflows/js-and-wasm-artifacts.yml
vendored
@@ -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
|
||||
|
||||
1
.github/workflows/lagom-template.yml
vendored
1
.github/workflows/lagom-template.yml
vendored
@@ -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
|
||||
|
||||
1
.github/workflows/libjs-test262.yml
vendored
1
.github/workflows/libjs-test262.yml
vendored
@@ -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: |
|
||||
|
||||
1
.github/workflows/nightly-android.yml
vendored
1
.github/workflows/nightly-android.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user