mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
CI: Add a cache for the CLDR on the test262 runner
This commit is contained in:
parent
cff39734f1
commit
1e1cd07549
Notes:
sideshowbarker
2024-07-18 02:05:34 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/1e1cd075499 Pull-request: https://github.com/SerenityOS/serenity/pull/10556
1 changed files with 8 additions and 0 deletions
8
.github/workflows/libjs-test262.yml
vendored
8
.github/workflows/libjs-test262.yml
vendored
|
@ -65,6 +65,7 @@ jobs:
|
|||
- name: Create build directory
|
||||
run: |
|
||||
mkdir -p libjs-test262/Build/UCD
|
||||
mkdir -p libjs-test262/Build/CLDR
|
||||
|
||||
- name: UnicodeData cache
|
||||
# TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
|
@ -73,6 +74,13 @@ jobs:
|
|||
path: ${{ github.workspace }}/libjs-test262/Build/UCD
|
||||
key: UnicodeData-${{ hashFiles('Meta/CMake/unicode_data.cmake') }}
|
||||
|
||||
- name: UnicodeLocale cache
|
||||
# TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/libjs-test262/Build/CLDR
|
||||
key: UnicodeData-${{ hashFiles('Meta/CMake/unicode_data.cmake') }}
|
||||
|
||||
- name: Build libjs-test262-runner and test-js
|
||||
working-directory: libjs-test262
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue