Skip to content

Commit

Permalink
ci: cache the Go cache across builds
Browse files Browse the repository at this point in the history
This should hopefully make the build slightly faster.
  • Loading branch information
aykevl committed Nov 19, 2024
1 parent 0087d4c commit d1fb7cf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ jobs:
- name: Build wasi-libc
if: steps.cache-wasi-libc.outputs.cache-hit != 'true'
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
run: |
scoop install [email protected]
Expand Down

0 comments on commit d1fb7cf

Please sign in to comment.