mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 09:50:45 +00:00
update tests.
This commit is contained in:
parent
6911e4b321
commit
44d7050ba1
1 changed files with 65 additions and 1 deletions
66
.travis.yml
66
.travis.yml
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
script:
|
script:
|
||||||
- go run build/ci.go lint
|
- go run build/ci.go lint
|
||||||
|
|
||||||
- stage: Build and test
|
- stage: Build
|
||||||
go: '1.14.x'
|
go: '1.14.x'
|
||||||
script:
|
script:
|
||||||
- sudo modprobe fuse
|
- sudo modprobe fuse
|
||||||
|
|
@ -32,6 +32,70 @@ jobs:
|
||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
|
- stage: Tests
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: A-B tests
|
||||||
|
script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/[a-b].*")
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/c[a-m].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: C-[a-m] tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/c[n-o].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: C-[n-o] tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/c[p-z].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: C-[p-z] tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/[d-i].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: D-I tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/[j-n].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: J-N tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/[o-r].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: O-R tests
|
||||||
|
- script: travis_retry go run build/ci.go test -v -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/s.*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: S tests
|
||||||
|
- script: travis_retry go run build/ci.go test -coverage $(go list ./... | grep "github.com\/XinFinOrg\/XDPoSChain\/[t-z].*")
|
||||||
|
os: linux
|
||||||
|
dist: bionic
|
||||||
|
go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=auto
|
||||||
|
name: T-Z tests
|
||||||
- stage: Github release
|
- stage: Github release
|
||||||
go: '1.14.x'
|
go: '1.14.x'
|
||||||
script:
|
script:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue