travis: get rid of old useless GO111MODULE directives (#27991)

This commit is contained in:
Péter Szilágyi 2023-08-23 18:54:30 +03:00 committed by GitHub
parent 76d4ac1acb
commit 52219ced8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 14 deletions

View File

@ -66,7 +66,6 @@ jobs:
go: 1.21.x
env:
- azure-linux
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
addons:
@ -100,7 +99,6 @@ jobs:
go: 1.21.x
env:
- azure-osx
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
script:
@ -113,8 +111,6 @@ jobs:
arch: amd64
dist: bionic
go: 1.21.x
env:
- GO111MODULE=on
script:
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
@ -124,8 +120,6 @@ jobs:
arch: arm64
dist: bionic
go: 1.20.x
env:
- GO111MODULE=on
script:
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
@ -133,8 +127,6 @@ jobs:
os: linux
dist: bionic
go: 1.20.x
env:
- GO111MODULE=on
script:
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
@ -146,7 +138,6 @@ jobs:
go: 1.21.x
env:
- ubuntu-ppa
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
addons:
@ -170,7 +161,6 @@ jobs:
go: 1.21.x
env:
- azure-purge
- GO111MODULE=on
git:
submodules: false # avoid cloning ethereum/tests
script:
@ -182,8 +172,6 @@ jobs:
os: linux
dist: bionic
go: 1.21.x
env:
- GO111MODULE=on
script:
- travis_wait 30 go run build/ci.go test -race $TEST_PACKAGES

View File

@ -6,7 +6,7 @@
GOBIN = ./build/bin
GO ?= latest
GORUN = env GO111MODULE=on go run
GORUN = go run
geth:
$(GORUN) build/ci.go install ./cmd/geth
@ -23,7 +23,7 @@ lint: ## Run linters.
$(GORUN) build/ci.go lint
clean:
env GO111MODULE=on go clean -cache
go clean -cache
rm -fr build/_workspace/pkg/ $(GOBIN)/*
# The devtools target installs tools required for 'go generate'.