[Web] Don't cache emsdk
Due to how caches are accessed this cache is almost useless, it only
matters if it is from the same branch or a base branch, and is identical
between branches, so caching it just clutters the build cache
(cherry picked from commit 1e3b24f658
)
pull/1694/head
parent
142e5d4302
commit
f5fa712138
|
@ -92,7 +92,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
|
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
|
||||||
EM_VERSION: 3.1.39
|
EM_VERSION: 3.1.39
|
||||||
EM_CACHE_FOLDER: emsdk-cache
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -123,7 +122,7 @@ jobs:
|
||||||
uses: mymindstorm/setup-emsdk@v14
|
uses: mymindstorm/setup-emsdk@v14
|
||||||
with:
|
with:
|
||||||
version: ${{ env.EM_VERSION }}
|
version: ${{ env.EM_VERSION }}
|
||||||
actions-cache-folder: ${{ env.EM_CACHE_FOLDER }}
|
no-cache: true
|
||||||
|
|
||||||
- name: Setup MinGW for Windows/MinGW build
|
- name: Setup MinGW for Windows/MinGW build
|
||||||
if: matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes'
|
if: matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes'
|
||||||
|
|
Loading…
Reference in New Issue