Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c01270d

Browse files
committedOct 6, 2015
use go1.5 for circleCI (snippet from circle support)
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
1 parent b548449 commit c01270d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎circle.yml

+6
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ machine:
33
TEST_NO_FUSE: 1
44
TEST_VERBOSE: 1
55
TRAVIS: 1
6+
post:
7+
- sudo rm -rf /usr/local/go
8+
- if [ ! -e go1.5.linux-amd64.tar.gz ]; then curl -o go1.5.linux-amd64.tar.gz https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz; fi
9+
- sudo tar -C /usr/local -xzf go1.5.linux-amd64.tar.gz
610

711
dependencies:
812
pre:
913
# setup ipv6
1014
- sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 net.ipv6.conf.default.disable_ipv6=0 net.ipv6.conf.all.disable_ipv6=0
15+
cache_directories:
16+
- ~/go1.5.linux-amd64.tar.gz
1117

1218
test:
1319
override:

0 commit comments

Comments
 (0)
Please sign in to comment.