mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
ci: fix Binaryen cache on Windows
The wrong path was used to cache binaryen, so it wasn't actually getting cached. Therefore, wasm-opt was rebuilt on every new PR (slowing down the "Build TinyGo release tarball" a lot).
This commit is contained in:
@@ -66,8 +66,8 @@ jobs:
|
||||
uses: actions/cache@v2
|
||||
id: cache-binaryen
|
||||
with:
|
||||
key: binaryen-v1
|
||||
path: build/binaryen
|
||||
key: binaryen-windows-v2
|
||||
path: build/wasm-opt.exe
|
||||
- name: Build Binaryen
|
||||
if: steps.cache-binaryen.outputs.cache-hit != 'true'
|
||||
run: make binaryen
|
||||
|
||||
Reference in New Issue
Block a user