From 1d7300232b851e7bfed392dc1aad1a248bd38432 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Tue, 14 Oct 2025 17:15:32 +0200 Subject: [PATCH] .github/workflows: activate keeper build + revive 32bit tests --- .github/workflows/go.yml | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b8cf7f75e0..600d9bdcf9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,6 +34,53 @@ jobs: go run build/ci.go check_generate go run build/ci.go check_baddeps + build-386: + name: 32bit build + 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: Run tests + run: go build ./cmd/geth + env: + GOARCH: 386 + + keeper-build-ziren: + name: Keeper + needs: build-386 + runs-on: [self-hosted-ghr, size-l-x64] + strategy: + matrix: + include: + - env: + GOARCH: mips + GOOS: linux + GOMIPS: softfloat + tags: "ziren" + 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: Run tests + run: cd cmd/keeper && go build -tags ${{ matrix.tags }} . + env: ${{ matrix.env }} + test: name: Test needs: lint