We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent b548449 commit c01270dCopy full SHA for c01270d
circle.yml
@@ -3,11 +3,17 @@ machine:
3
TEST_NO_FUSE: 1
4
TEST_VERBOSE: 1
5
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
10
11
dependencies:
12
pre:
13
# setup ipv6
14
- 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
17
18
test:
19
override:
0 commit comments