CI: Add a cache for the CLDR on the test262 runner

This commit is contained in:
Timothy Flynn 2021-10-21 11:22:32 -04:00 committed by Linus Groh
parent cff39734f1
commit 1e1cd07549

View file

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