mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-21 14:14:30 +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:
|
||||
- go run build/ci.go lint
|
||||
|
||||
- stage: build
|
||||
- stage: test A-B packages
|
||||
os: linux
|
||||
dist: bionic
|
||||
go: 1.15.x
|
||||
env:
|
||||
- GO111MODULE=auto
|
||||
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: build
|
||||
# os: linux
|
||||
# arch: amd64
|
||||
# dist: bionic
|
||||
# go: 1.16.x
|
||||
# env:
|
||||
# - GO111MODULE=auto
|
||||
# script:
|
||||
# - go run build/ci.go test -coverage $TEST_PACKAGES
|
||||
- stage: test C 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\/[c].*")
|
||||
|
||||
- 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