diff options
author | Samuel Marks <samuelmarks@gmail.com> | 2018-10-03 18:41:24 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-10-03 18:41:24 +0800 |
commit | d3a773c284103401090c4c806d6641d6f6fddcf5 (patch) | |
tree | 1d72d6040f8ddf8dd44949656e1e39bb8674caa1 | |
parent | bd1f7ebda27d57002b6a04a95812420a40117b3a (diff) | |
download | dexon-d3a773c284103401090c4c806d6641d6f6fddcf5.tar.gz dexon-d3a773c284103401090c4c806d6641d6f6fddcf5.tar.zst dexon-d3a773c284103401090c4c806d6641d6f6fddcf5.zip |
travis, appveyor: bump to Go 1.11.1 (#17820)
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | appveyor.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 76cc133db..d6cd7d51c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -144,7 +144,7 @@ matrix: git: submodules: false # avoid cloning ethereum/tests before_install: - - curl https://storage.googleapis.com/golang/go1.11.linux-amd64.tar.gz | tar -xz + - curl https://storage.googleapis.com/golang/go1.11.1.linux-amd64.tar.gz | tar -xz - export PATH=`pwd`/go/bin:$PATH - export GOROOT=`pwd`/go - export GOPATH=$HOME/go diff --git a/appveyor.yml b/appveyor.yml index b056cb3fd..11848ddb9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,8 +23,8 @@ environment: install: - git submodule update --init - rmdir C:\go /s /q - - appveyor DownloadFile https://storage.googleapis.com/golang/go1.11.windows-%GETH_ARCH%.zip - - 7z x go1.11.windows-%GETH_ARCH%.zip -y -oC:\ > NUL + - appveyor DownloadFile https://storage.googleapis.com/golang/go1.11.1.windows-%GETH_ARCH%.zip + - 7z x go1.11.1.windows-%GETH_ARCH%.zip -y -oC:\ > NUL - go version - gcc --version |