mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
.github: update to add keeper build
This commit is contained in:
parent
9dbe84dfcc
commit
beb58f25cf
1 changed files with 22 additions and 6 deletions
28
.github/workflows/go.yml
vendored
28
.github/workflows/go.yml
vendored
|
|
@ -34,8 +34,8 @@ jobs:
|
||||||
go run build/ci.go check_generate
|
go run build/ci.go check_generate
|
||||||
go run build/ci.go check_baddeps
|
go run build/ci.go check_baddeps
|
||||||
|
|
||||||
build-386:
|
keeper:
|
||||||
name: 32bit build
|
name: Keeper Builds
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: [self-hosted-ghr, size-l-x64]
|
runs-on: [self-hosted-ghr, size-l-x64]
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -49,10 +49,26 @@ jobs:
|
||||||
go-version: '1.25'
|
go-version: '1.25'
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Run tests
|
- name: Build
|
||||||
run: go test ./...
|
run: go run build/ci.go keeper
|
||||||
env:
|
|
||||||
GOARCH: 386
|
32bit-tests:
|
||||||
|
name: 32bit tests
|
||||||
|
needs: test
|
||||||
|
runs-on: [self-hosted-ghr, size-l-x64]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.25'
|
||||||
|
cache: false
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: go run build ci.go test -arch 386
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue