From 152591ee3f214dd42ffc0e5e9cc28636a25711ec Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 18 Feb 2018 14:14:05 +0800 Subject: [PATCH] update CIs to Go 1.10 and Go 1.9.4 The version numbers in the travis config are strings, not numbers. See https://github.com/travis-ci/gimme/issues/132. --- .travis.yml | 4 ++-- appveyor.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a24c253..824a91bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,8 @@ addons: language: go go: - - 1.9.3 - - 1.10rc1 + - "1.9.4" + - "1.10" # first part of the GOARCH workaround # setting the GOARCH directly doesn't work, since the value will be overwritten later diff --git a/appveyor.yml b/appveyor.yml index 2c497e8d..c624ef70 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,8 +14,8 @@ clone_folder: c:\gopath\src\github.com\lucas-clemente\quic-go install: - rmdir c:\go /s /q - - appveyor DownloadFile https://storage.googleapis.com/golang/go1.9.3.windows-amd64.zip - - 7z x go1.9.3.windows-amd64.zip -y -oC:\ > NUL + - appveyor DownloadFile https://storage.googleapis.com/golang/go1.10.windows-amd64.zip + - 7z x go1.10.windows-amd64.zip -y -oC:\ > NUL - set PATH=%PATH%;%GOPATH%\bin\windows_%GOARCH%;%GOPATH%\bin - echo %PATH% - echo %GOPATH%