Răsfoiți Sursa

[JavaScript] 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 feeb0721abbd64d2e46423d02630fed31c42aa5d)
A Thousand Ships 8 luni în urmă
părinte
comite
ec5606e3da
1 a modificat fișierele cu 1 adăugiri și 3 ștergeri
  1. 1 3
      .github/workflows/javascript_builds.yml

+ 1 - 3
.github/workflows/javascript_builds.yml

@@ -8,7 +8,6 @@ env:
   GODOT_BASE_BRANCH: 3.6
   GODOT_BASE_BRANCH: 3.6
   SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
   SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
   EM_VERSION: 3.1.39
   EM_VERSION: 3.1.39
-  EM_CACHE_FOLDER: "emsdk-cache"
 
 
 concurrency:
 concurrency:
   group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-javascript
   group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-javascript
@@ -26,8 +25,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}}
-          cache-key: emsdk-${{ matrix.cache-name }}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
+          no-cache: true
 
 
       - name: Verify Emscripten setup
       - name: Verify Emscripten setup
         run: |
         run: |