diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-04-11 15:56:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 15:56:32 +0800 |
commit | 34ecb495b673b9ce35af20ccb5b44cd175003b94 (patch) | |
tree | 223e0f394ef964851188cd94ecc38b965f2d6fdc | |
parent | 2e247705cd27e919e806f29ff2adcd57c163b1ac (diff) | |
parent | 95d5c2208644aa7d9a3cb7e1585a9bf05f212c6f (diff) | |
download | dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar.gz dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar.bz2 dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar.lz dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar.xz dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.tar.zst dexon-34ecb495b673b9ce35af20ccb5b44cd175003b94.zip |
Merge pull request #16481 from karalabe/go1.10.1
travis, appveyor: bump to Go 1.10.1
-rw-r--r-- | .travis.yml | 18 | ||||
-rw-r--r-- | appveyor.yml | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index 1874d6cb9..2ba6f18f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ matrix: - os: linux dist: trusty sudo: required - go: "1.10" + go: 1.10.x script: - sudo modprobe fuse - sudo chmod 666 /dev/fuse @@ -27,7 +27,7 @@ matrix: - go run build/ci.go test -coverage $TEST_PACKAGES - os: osx - go: "1.10" + go: 1.10.x script: - unset -f cd # workaround for https://github.com/travis-ci/travis-ci/issues/8703 - brew update @@ -39,7 +39,7 @@ matrix: # This builder only tests code linters on latest version of Go - os: linux dist: trusty - go: "1.10" + go: 1.10.x env: - lint git: @@ -50,7 +50,7 @@ matrix: # This builder does the Ubuntu PPA upload - os: linux dist: trusty - go: "1.10" + go: 1.10.x env: - ubuntu-ppa git: @@ -69,7 +69,7 @@ matrix: - os: linux dist: trusty sudo: required - go: "1.10" + go: 1.10.x env: - azure-linux git: @@ -103,7 +103,7 @@ matrix: dist: trusty services: - docker - go: "1.10" + go: 1.10.x env: - azure-linux-mips git: @@ -147,7 +147,7 @@ matrix: git: submodules: false # avoid cloning ethereum/tests before_install: - - curl https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz | tar -xz + - curl https://storage.googleapis.com/golang/go1.10.1.linux-amd64.tar.gz | tar -xz - export PATH=`pwd`/go/bin:$PATH - export GOROOT=`pwd`/go - export GOPATH=$HOME/go @@ -164,7 +164,7 @@ matrix: # This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads - os: osx - go: "1.10" + go: 1.10.x env: - azure-osx - azure-ios @@ -193,7 +193,7 @@ matrix: # This builder does the Azure archive purges to avoid accumulating junk - os: linux dist: trusty - go: "1.10" + go: 1.10.x env: - azure-purge git: diff --git a/appveyor.yml b/appveyor.yml index 45475d166..141ef16ff 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.10.windows-%GETH_ARCH%.zip - - 7z x go1.10.windows-%GETH_ARCH%.zip -y -oC:\ > NUL + - appveyor DownloadFile https://storage.googleapis.com/golang/go1.10.1.windows-%GETH_ARCH%.zip + - 7z x go1.10.1.windows-%GETH_ARCH%.zip -y -oC:\ > NUL - go version - gcc --version |