aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2021-11-22 02:47:18 +0100
committerRon Evans <[email protected]>2021-11-22 19:43:03 +0100
commit7238c0a16f6e7ef1a81f9f3db973ba7635b88d21 (patch)
treebe8db769dd96f26173c02c0af1dceb1c982ef4e1 /.github/workflows/windows.yml
parentc177e4dbc0eb848a0180eb7b704371ed2824371b (diff)
downloadtinygo-7238c0a16f6e7ef1a81f9f3db973ba7635b88d21.tar.gz
tinygo-7238c0a16f6e7ef1a81f9f3db973ba7635b88d21.zip
ci: cache Go cache for faster build times
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 3a503688a..7442795f3 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -23,6 +23,13 @@ jobs:
uses: actions/checkout@v2
with:
submodules: true
+ - name: Cache Go
+ uses: actions/cache@v2
+ with:
+ key: go-cache-windows-v1-${{ hashFiles('go.mod') }}
+ path: |
+ ~/AppData/Local/go-build
+ ~/go/pkg/mod
- name: Cache LLVM source
uses: actions/cache@v2
id: cache-llvm-source