mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
untested: gmp in ci
This commit is contained in:
parent
7df3cf59fd
commit
0b8287d204
3 changed files with 13 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
- name: Install cross toolchain
|
- name: Install cross toolchain
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib
|
apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib libgmp-dev
|
||||||
|
|
||||||
- name: Build (amd64)
|
- name: Build (amd64)
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
10
.github/workflows/go.yml
vendored
10
.github/workflows/go.yml
vendored
|
|
@ -28,6 +28,11 @@ jobs:
|
||||||
go-version: 1.24
|
go-version: 1.24
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libgmp-dev
|
||||||
|
|
||||||
- name: Run linters
|
- name: Run linters
|
||||||
run: |
|
run: |
|
||||||
go run build/ci.go lint
|
go run build/ci.go lint
|
||||||
|
|
@ -54,5 +59,10 @@ jobs:
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libgmp-dev
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: go test ./...
|
run: go test ./...
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ for:
|
||||||
- matrix:
|
- matrix:
|
||||||
only:
|
only:
|
||||||
- image: Ubuntu
|
- image: Ubuntu
|
||||||
|
install:
|
||||||
|
- sudo apt-get update && sudo apt-get install -y libgmp-dev
|
||||||
build_script:
|
build_script:
|
||||||
- go run build/ci.go lint
|
- go run build/ci.go lint
|
||||||
- go run build/ci.go check_generate
|
- go run build/ci.go check_generate
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue