mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
chore
This commit is contained in:
parent
f169f788d7
commit
dad791aaca
1 changed files with 5 additions and 5 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -15,8 +15,8 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-ubuntu:
|
build:
|
||||||
name: Build (Ubuntu-22.04)
|
name: Build
|
||||||
|
|
||||||
if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
|
if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
|
||||||
strategy:
|
strategy:
|
||||||
|
|
@ -70,11 +70,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
choco install mingw -y
|
choco install mingw -y
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- name: Cache Go modules
|
||||||
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
${{ env.USERPROFILE }}\go\pkg\mod
|
~/go/pkg/mod
|
||||||
${{ env.LOCALAPPDATA }}\go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||||||
restore-keys: ${{ runner.os }}-go-
|
restore-keys: ${{ runner.os }}-go-
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue