go-ethereum/.travis.yml
2021-08-25 23:51:42 +10:00

36 lines
No EOL
805 B
YAML

language: go
go_import_path: github.com/ethereum/go-ethereum
sudo: false
jobs:
include:
# This builder only tests code linters on latest version of Go
- stage: lint
os: linux
dist: bionic
go: 1.16.x
env:
- lint
git:
submodules: false # avoid cloning ethereum/tests
script:
- go run build/ci.go lint
- stage: build
os: linux
dist: bionic
go: 1.15.x
env:
- GO111MODULE=auto
script:
- go run build/ci.go test -coverage $TEST_PACKAGES
# 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