From b1eb1a0e739a54e247d465b348927ef988000749 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Sun, 17 Sep 2017 13:18:32 -0700 Subject: [PATCH 1/3] update_deps.bash: handle detached HEAD better --- update_deps.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_deps.bash b/update_deps.bash index 0a349a88a..576e8b4a5 100755 --- a/update_deps.bash +++ b/update_deps.bash @@ -20,7 +20,7 @@ function go_get_update { while read d do echo $d - go get -u $d + go get -u $d || echo "failed, trying again with master" && cd $GOPATH/src/$d && git checkout master && go get -u $d done } From f3cb2c0ee4868010a2f7e1b9f1e6b78e4d3a0853 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Sun, 17 Sep 2017 13:18:51 -0700 Subject: [PATCH 2/3] .travis.yml: go1.9 + tip exclusively --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 234cf3748..31624b2b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,5 @@ script: - ./coveralls.bash go: - - 1.7.x - - 1.8.x + - 1.9.x - tip From 5d18314c7c603331072e138c88e4c153b74dbe90 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Sun, 17 Sep 2017 13:19:08 -0700 Subject: [PATCH 3/3] circle.yml: go1.9 exclusively --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 29520e694..35ace2ce8 100644 --- a/circle.yml +++ b/circle.yml @@ -2,7 +2,7 @@ machine: pre: - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - sudo rm -rf /usr/local/go - - curl -sSL https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | sudo tar xz -C /usr/local + - curl -sSL https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | sudo tar xz -C /usr/local services: - docker