mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
add cache for windows build
This commit is contained in:
parent
3be55f8b7d
commit
f169f788d7
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -68,7 +68,15 @@ jobs:
|
|||
|
||||
- name: Install dependencies on Windows
|
||||
run: |
|
||||
choco install mingw
|
||||
choco install mingw -y
|
||||
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
${{ env.USERPROFILE }}\go\pkg\mod
|
||||
${{ env.LOCALAPPDATA }}\go-build
|
||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||||
restore-keys: ${{ runner.os }}-go-
|
||||
|
||||
- name: Build
|
||||
run: make all
|
||||
|
|
|
|||
Loading…
Reference in a new issue