aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-25 21:26:56 +0200
committerLoïc Hoguin <[email protected]>2015-07-25 21:26:56 +0200
commit1267388416fbd46ab7dad230116d01081c1215f6 (patch)
treec2269f451eff63577e8c51e718679da7132d42e6 /circle.yml
parent79aa25cc03518a41351d9f5b074fed065e5713e0 (diff)
downloadcowboy-1267388416fbd46ab7dad230116d01081c1215f6.tar.gz
cowboy-1267388416fbd46ab7dad230116d01081c1215f6.tar.bz2
cowboy-1267388416fbd46ab7dad230116d01081c1215f6.zip
Add CircleCI to the 1.0 branch
Let's hope it works on first try. LOTS of OTP versions to test!
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..ee255e7
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,22 @@
+general:
+ artifacts:
+ - "logs"
+
+dependencies:
+ cache_directories:
+ - "~/.kerl"
+ - "~/erlang"
+
+ pre:
+ - sudo pip install autobahntestsuite
+ - sudo apt-get install autoconf2.59
+ - cd $HOME/bin && ln -s /usr/bin/autoconf2.59 autoconf
+ - cd $HOME/bin && ln -s /usr/bin/autoheader2.59 autoheader
+ - make ci-prepare:
+ timeout: 18000
+
+test:
+ override:
+ - source $HOME/erlang/OTP-18.0.2/activate && make dialyze
+ - make -k ci:
+ timeout: 3600