mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
.github: add mips-32 test
This commit is contained in:
parent
c5b7cfa9c3
commit
1d97a752e2
1 changed files with 22 additions and 0 deletions
22
.github/workflows/go.yml
vendored
Normal file
22
.github/workflows/go.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: mips32 tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.21.1
|
||||
- name: Build core tests
|
||||
run: go test -c ./core
|
||||
- name: Run tests
|
||||
run: qemu-mips-static ./core.test
|
||||
Loading…
Reference in a new issue