From 1e1cd075499568a99036dea1fdb3e4c7a2dbe69c Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 21 Oct 2021 11:22:32 -0400 Subject: [PATCH] CI: Add a cache for the CLDR on the test262 runner --- .github/workflows/libjs-test262.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 815c3d2bb0..60e3fee199 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -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: |