Skip to content

Commit 34ecb49

Browse files
authored
Merge pull request #16481 from karalabe/go1.10.1
travis, appveyor: bump to Go 1.10.1
2 parents 2e24770 + 95d5c22 commit 34ecb49

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ matrix:
1818
- os: linux
1919
dist: trusty
2020
sudo: required
21-
go: "1.10"
21+
go: 1.10.x
2222
script:
2323
- sudo modprobe fuse
2424
- sudo chmod 666 /dev/fuse
@@ -27,7 +27,7 @@ matrix:
2727
- go run build/ci.go test -coverage $TEST_PACKAGES
2828

2929
- os: osx
30-
go: "1.10"
30+
go: 1.10.x
3131
script:
3232
- unset -f cd # workaround for https://github.com/travis-ci/travis-ci/issues/8703
3333
- brew update
@@ -39,7 +39,7 @@ matrix:
3939
# This builder only tests code linters on latest version of Go
4040
- os: linux
4141
dist: trusty
42-
go: "1.10"
42+
go: 1.10.x
4343
env:
4444
- lint
4545
git:
@@ -50,7 +50,7 @@ matrix:
5050
# This builder does the Ubuntu PPA upload
5151
- os: linux
5252
dist: trusty
53-
go: "1.10"
53+
go: 1.10.x
5454
env:
5555
- ubuntu-ppa
5656
git:
@@ -69,7 +69,7 @@ matrix:
6969
- os: linux
7070
dist: trusty
7171
sudo: required
72-
go: "1.10"
72+
go: 1.10.x
7373
env:
7474
- azure-linux
7575
git:
@@ -103,7 +103,7 @@ matrix:
103103
dist: trusty
104104
services:
105105
- docker
106-
go: "1.10"
106+
go: 1.10.x
107107
env:
108108
- azure-linux-mips
109109
git:
@@ -147,7 +147,7 @@ matrix:
147147
git:
148148
submodules: false # avoid cloning ethereum/tests
149149
before_install:
150-
- curl https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz | tar -xz
150+
- curl https://storage.googleapis.com/golang/go1.10.1.linux-amd64.tar.gz | tar -xz
151151
- export PATH=`pwd`/go/bin:$PATH
152152
- export GOROOT=`pwd`/go
153153
- export GOPATH=$HOME/go
@@ -164,7 +164,7 @@ matrix:
164164

165165
# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads
166166
- os: osx
167-
go: "1.10"
167+
go: 1.10.x
168168
env:
169169
- azure-osx
170170
- azure-ios
@@ -193,7 +193,7 @@ matrix:
193193
# This builder does the Azure archive purges to avoid accumulating junk
194194
- os: linux
195195
dist: trusty
196-
go: "1.10"
196+
go: 1.10.x
197197
env:
198198
- azure-purge
199199
git:

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ environment:
2323
install:
2424
- git submodule update --init
2525
- rmdir C:\go /s /q
26-
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.10.windows-%GETH_ARCH%.zip
27-
- 7z x go1.10.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
26+
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.10.1.windows-%GETH_ARCH%.zip
27+
- 7z x go1.10.1.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
2828
- go version
2929
- gcc --version
3030

0 commit comments

Comments
 (0)