diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-11-09 16:21:59 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-11-09 16:21:59 +0100 |
commit | 1e3b24f658c0c60f1d2b3a16dcf1ee99ffd6f1a0 (patch) | |
tree | d04c563d9c0b3f5529e5b86b3bdf4a31ab7de380 | |
parent | 253e095c815158184c9ec044fd0699d93c68675d (diff) | |
download | redot-cpp-1e3b24f658c0c60f1d2b3a16dcf1ee99ffd6f1a0.tar.gz |
[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
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9f5db7..246689a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,6 @@ jobs: env: SCONS_CACHE: ${{ github.workspace }}/.scons-cache/ EM_VERSION: 3.1.39 - EM_CACHE_FOLDER: emsdk-cache steps: - name: Checkout @@ -126,7 +125,7 @@ jobs: uses: mymindstorm/setup-emsdk@v14 with: version: ${{ env.EM_VERSION }} - actions-cache-folder: ${{ env.EM_CACHE_FOLDER }} + no-cache: true - name: Setup MinGW for Windows/MinGW build if: matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes' |