From 4e3d0068713c212ec3774e0309a15a6a28379abc Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 27 Feb 2019 09:51:11 +0900 Subject: [PATCH] update CIs to Go 1.12 --- .circleci/config.yml | 4 ++-- .travis.yml | 2 +- appveyor.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76c4fe0b..86c45294 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,6 +44,6 @@ workflows: workflow: jobs: - build: - name: "Go 1.12rc1" - image: "circleci/golang:1.12rc1" + name: "Go 1.12" + image: "circleci/golang:1.12" runrace: true diff --git a/.travis.yml b/.travis.yml index 69a0470c..2f728825 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ group: travis_latest language: go go: - - "1.12rc1" + - "1.12.x" # 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 aaf8aed9..d076d26d 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.12rc1.windows-amd64.zip - - 7z x go1.12rc1.windows-amd64.zip -y -oC:\ > NUL + - appveyor DownloadFile https://storage.googleapis.com/golang/go1.12.windows-amd64.zip + - 7z x go1.12.windows-amd64.zip -y -oC:\ > NUL - set PATH=%PATH%;%GOPATH%\bin\windows_%GOARCH%;%GOPATH%\bin - echo %PATH% - echo %GOPATH%