From b4aea8befb085f6e79a2bd92497ee6b5b7b9068a Mon Sep 17 00:00:00 2001 From: Juan Batiz-Benet Date: Thu, 21 May 2015 00:12:37 -0400 Subject: [PATCH] add circleci support --- circle.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 00000000000..b5af92d560b --- /dev/null +++ b/circle.yml @@ -0,0 +1,15 @@ +machine: + environment: + TEST_NO_FUSE: 1 + TEST_VERBOSE: 1 + TRAVIS: 1 + +dependency: + pre: + # setup ipv6 + - sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 net.ipv6.conf.default.disable_ipv6=0 net.ipv6.conf.all.disable_ipv6=0 + +test: + override: + - make test_go_expensive + - make test_sharness_expensive