File tree 2 files changed +2
-14
lines changed
2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change 66
66
go : 1.21.x
67
67
env :
68
68
- azure-linux
69
- - GO111MODULE=on
70
69
git :
71
70
submodules : false # avoid cloning ethereum/tests
72
71
addons :
100
99
go : 1.21.x
101
100
env :
102
101
- azure-osx
103
- - GO111MODULE=on
104
102
git :
105
103
submodules : false # avoid cloning ethereum/tests
106
104
script :
@@ -113,8 +111,6 @@ jobs:
113
111
arch : amd64
114
112
dist : bionic
115
113
go : 1.21.x
116
- env :
117
- - GO111MODULE=on
118
114
script :
119
115
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
120
116
@@ -124,17 +120,13 @@ jobs:
124
120
arch : arm64
125
121
dist : bionic
126
122
go : 1.20.x
127
- env :
128
- - GO111MODULE=on
129
123
script :
130
124
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
131
125
132
126
- stage : build
133
127
os : linux
134
128
dist : bionic
135
129
go : 1.20.x
136
- env :
137
- - GO111MODULE=on
138
130
script :
139
131
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
140
132
@@ -146,7 +138,6 @@ jobs:
146
138
go : 1.21.x
147
139
env :
148
140
- ubuntu-ppa
149
- - GO111MODULE=on
150
141
git :
151
142
submodules : false # avoid cloning ethereum/tests
152
143
addons :
@@ -170,7 +161,6 @@ jobs:
170
161
go : 1.21.x
171
162
env :
172
163
- azure-purge
173
- - GO111MODULE=on
174
164
git :
175
165
submodules : false # avoid cloning ethereum/tests
176
166
script :
@@ -182,8 +172,6 @@ jobs:
182
172
os : linux
183
173
dist : bionic
184
174
go : 1.21.x
185
- env :
186
- - GO111MODULE=on
187
175
script :
188
176
- travis_wait 30 go run build/ci.go test -race $TEST_PACKAGES
189
177
Original file line number Diff line number Diff line change 6
6
7
7
GOBIN = ./build/bin
8
8
GO ?= latest
9
- GORUN = env GO111MODULE=on go run
9
+ GORUN = go run
10
10
11
11
geth :
12
12
$(GORUN ) build/ci.go install ./cmd/geth
@@ -23,7 +23,7 @@ lint: ## Run linters.
23
23
$(GORUN ) build/ci.go lint
24
24
25
25
clean :
26
- env GO111MODULE=on go clean -cache
26
+ go clean -cache
27
27
rm -fr build/_workspace/pkg/ $(GOBIN ) /*
28
28
29
29
# The devtools target installs tools required for 'go generate'.
You can’t perform that action at this time.
0 commit comments