mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Meta: Use the correct cache paths in the wasm workflow
Previously we were caching unicode data for the lagom tools, but we should've been caching them for the actual build instead.
This commit is contained in:
parent
617d29d2fb
commit
b5301a3ea9
Notes:
sideshowbarker
2024-07-17 06:39:26 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/b5301a3ea9 Pull-request: https://github.com/SerenityOS/serenity/pull/16199 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 7 additions and 5 deletions
12
.github/workflows/wasm.yml
vendored
12
.github/workflows/wasm.yml
vendored
|
@ -30,23 +30,25 @@ jobs:
|
|||
- name: "Create build directories"
|
||||
run: |
|
||||
mkdir -p ${{ github.workspace }}/Build/lagom-tools/TZDB
|
||||
mkdir -p ${{ github.workspace }}/Build/lagom-tools/UCD
|
||||
mkdir -p ${{ github.workspace }}/Build/lagom-tools/CLDR
|
||||
mkdir -p ${{ github.workspace }}/Build/wasm
|
||||
mkdir -p ${{ github.workspace }}/Build/wasm/UCD
|
||||
mkdir -p ${{ github.workspace }}/Build/wasm/CLDR
|
||||
- name: "TimeZoneData cache"
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/Build/lagom-tools/TZDB
|
||||
key: TimeZoneData-${{ hashFiles('Meta/CMake/time_zone_data.cmake') }}
|
||||
- name: "Copy over TZDB cache"
|
||||
run: |
|
||||
cp -r ${{ github.workspace }}/Build/lagom-tools/TZDB ${{ github.workspace }}/Build/wasm/TZDB
|
||||
- name: "UnicodeData cache"
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/Build/lagom-tools/UCD
|
||||
path: ${{ github.workspace }}/Build/wasm/UCD
|
||||
key: UnicodeData-${{ hashFiles('Meta/CMake/unicode_data.cmake') }}
|
||||
- name: "UnicodeLocale cache"
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/Build/lagom-tools/CLDR
|
||||
path: ${{ github.workspace }}/Build/wasm/CLDR
|
||||
key: UnicodeLocale-${{ hashFiles('Meta/CMake/locale_data.cmake') }}
|
||||
- name: "Build host lagom tools"
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue