mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 10:50:44 +00:00
split the tests to run in multiple pipes
This commit is contained in:
parent
2d92ccb59b
commit
b9a9b4087b
1 changed files with 37 additions and 12 deletions
49
.travis.yml
49
.travis.yml
|
|
@ -15,22 +15,47 @@ jobs:
|
||||||
script:
|
script:
|
||||||
- go run build/ci.go lint
|
- go run build/ci.go lint
|
||||||
|
|
||||||
- stage: build
|
- stage: test A-B packages
|
||||||
os: linux
|
os: linux
|
||||||
dist: bionic
|
dist: bionic
|
||||||
go: 1.15.x
|
go: 1.15.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=auto
|
- GO111MODULE=auto
|
||||||
script:
|
script:
|
||||||
- go run build/ci.go test -coverage $TEST_PACKAGES
|
- go run build/ci.go test -coverage $(go list ./... | grep "github.com\/ethereum\/go-ethereum\/[a-b].*")
|
||||||
|
|
||||||
# These builders run the tests
|
- stage: test C packages
|
||||||
# - stage: build
|
os: linux
|
||||||
# os: linux
|
dist: bionic
|
||||||
# arch: amd64
|
go: 1.15.x
|
||||||
# dist: bionic
|
env:
|
||||||
# go: 1.16.x
|
- GO111MODULE=auto
|
||||||
# env:
|
script:
|
||||||
# - GO111MODULE=auto
|
- go run build/ci.go test -coverage $(go list ./... | grep "github.com\/ethereum\/go-ethereum\/[c].*")
|
||||||
# script:
|
|
||||||
# - go run build/ci.go test -coverage $TEST_PACKAGES
|
- stage: test D-N packages
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.15.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
script:
|
||||||
|
- go run build/ci.go test -coverage $(go list ./... | grep "github.com\/ethereum\/go-ethereum\/[d-n].*")
|
||||||
|
|
||||||
|
- stage: test O-R packages
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.15.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
script:
|
||||||
|
- go run build/ci.go test -coverage $(go list ./... | grep "github.com\/ethereum\/go-ethereum\/[o-r].*")
|
||||||
|
|
||||||
|
- stage: test S-Z packages
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.15.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
script:
|
||||||
|
- go run build/ci.go test -coverage $(go list ./... | grep "github.com\/ethereum\/go-ethereum\/[s-z].*")
|
||||||
Loading…
Reference in a new issue