Skip to content

Commit 2469c4e

Browse files
committed
travis, Dockerfile, appveyor: bump to Go 1.13
1 parent 39b0b1a commit 2469c4e

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

Diff for: .travis.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
- stage: build
1919
os: linux
2020
dist: xenial
21-
go: 1.10.x
21+
go: 1.11.x
2222
script:
23-
- go run build/ci.go install
24-
- go run build/ci.go test -coverage $TEST_PACKAGES
23+
- go run build/ci.go install
24+
- go run build/ci.go test -coverage $TEST_PACKAGES
2525

2626
- stage: build
2727
os: linux
2828
dist: xenial
29-
go: 1.11.x
29+
go: 1.12.x
3030
script:
3131
- go run build/ci.go install
3232
- go run build/ci.go test -coverage $TEST_PACKAGES
@@ -35,14 +35,14 @@ jobs:
3535
- stage: build
3636
os: linux
3737
dist: xenial
38-
go: 1.12.x
38+
go: 1.13.x
3939
script:
4040
- go run build/ci.go install
4141
- go run build/ci.go test -coverage $TEST_PACKAGES
4242

4343
- stage: build
4444
os: osx
45-
go: 1.12.x
45+
go: 1.13.x
4646
script:
4747
- echo "Increase the maximum number of open file descriptors on macOS"
4848
- NOFILE=20480
@@ -61,7 +61,7 @@ jobs:
6161
if: type = push
6262
os: linux
6363
dist: xenial
64-
go: 1.12.x
64+
go: 1.13.x
6565
env:
6666
- ubuntu-ppa
6767
git:
@@ -85,7 +85,7 @@ jobs:
8585
os: linux
8686
dist: xenial
8787
sudo: required
88-
go: 1.12.x
88+
go: 1.13.x
8989
env:
9090
- azure-linux
9191
git:
@@ -121,7 +121,7 @@ jobs:
121121
dist: xenial
122122
services:
123123
- docker
124-
go: 1.12.x
124+
go: 1.13.x
125125
env:
126126
- azure-linux-mips
127127
git:
@@ -167,7 +167,7 @@ jobs:
167167
git:
168168
submodules: false # avoid cloning ethereum/tests
169169
before_install:
170-
- curl https://dl.google.com/go/go1.12.linux-amd64.tar.gz | tar -xz
170+
- curl https://dl.google.com/go/go1.13.linux-amd64.tar.gz | tar -xz
171171
- export PATH=`pwd`/go/bin:$PATH
172172
- export GOROOT=`pwd`/go
173173
- export GOPATH=$HOME/go
@@ -185,7 +185,7 @@ jobs:
185185
- stage: build
186186
if: type = push
187187
os: osx
188-
go: 1.12.x
188+
go: 1.13.x
189189
env:
190190
- azure-osx
191191
- azure-ios
@@ -216,7 +216,7 @@ jobs:
216216
if: type = cron
217217
os: linux
218218
dist: xenial
219-
go: 1.12.x
219+
go: 1.13.x
220220
env:
221221
- azure-purge
222222
git:

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build Geth in a stock Go builder container
2-
FROM golang:1.12-alpine as builder
2+
FROM golang:1.13-alpine as builder
33

44
RUN apk add --no-cache make gcc musl-dev linux-headers git
55

Diff for: Dockerfile.alltools

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build Geth in a stock Go builder container
2-
FROM golang:1.12-alpine as builder
2+
FROM golang:1.13-alpine as builder
33

44
RUN apk add --no-cache make gcc musl-dev linux-headers git
55

Diff for: appveyor.yml

+2-2
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://dl.google.com/go/go1.12.9.windows-%GETH_ARCH%.zip
27-
- 7z x go1.12.9.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
26+
- appveyor DownloadFile https://dl.google.com/go/go1.13.windows-%GETH_ARCH%.zip
27+
- 7z x go1.13.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
2828
- go version
2929
- gcc --version
3030

0 commit comments

Comments
 (0)