From 15d9a5ccae8f523186d013b44c161b30b96c7aae Mon Sep 17 00:00:00 2001
From: Juan Batiz-Benet <juan@benet.ai>
Date: Thu, 21 May 2015 00:12:37 -0400
Subject: [PATCH] add circleci support

License: MIT
Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
---
 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 000000000..e5b970638
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,15 @@
+machine:
+  environment:
+    TEST_NO_FUSE: 1
+    TEST_VERBOSE: 1
+    TRAVIS: 1
+
+dependencies:
+  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
-- 
GitLab