mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-11 22:43:40 +00:00
ci: cache the Go cache across builds
This should hopefully make the build slightly faster.
This commit is contained in:
committed by
Ron Evans
parent
3b8062170c
commit
d3810ecd48
@@ -100,6 +100,13 @@ jobs:
|
|||||||
- name: Build wasi-libc
|
- name: Build wasi-libc
|
||||||
if: steps.cache-wasi-libc.outputs.cache-hit != 'true'
|
if: steps.cache-wasi-libc.outputs.cache-hit != 'true'
|
||||||
run: make wasi-libc
|
run: make wasi-libc
|
||||||
|
- name: Cache Go cache
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
key: go-cache-windows-v1-${{ hashFiles('go.mod') }}
|
||||||
|
path: |
|
||||||
|
C:/Users/runneradmin/AppData/Local/go-build
|
||||||
|
C:/Users/runneradmin/go/pkg/mod
|
||||||
- name: Install wasmtime
|
- name: Install wasmtime
|
||||||
run: |
|
run: |
|
||||||
scoop install wasmtime@14.0.4
|
scoop install wasmtime@14.0.4
|
||||||
|
|||||||
Reference in New Issue
Block a user