aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-08-26 20:09:51 +0200
committerLoïc Hoguin <[email protected]>2015-08-26 20:09:51 +0200
commit997ec60732fb0e7dbc28f849f7d5779070e5d81b (patch)
tree7956926ee58564569ed3441287113fe5a2481b60 /circle.yml
parent7d8a571b1e50602d701ca203fbf28036b2cf80f5 (diff)
downloadcowlib-997ec60732fb0e7dbc28f849f7d5779070e5d81b.tar.gz
cowlib-997ec60732fb0e7dbc28f849f7d5779070e5d81b.tar.bz2
cowlib-997ec60732fb0e7dbc28f849f7d5779070e5d81b.zip
Add CircleCI to 1.0.x branch
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..7775bcf
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,18 @@
+dependencies:
+ cache_directories:
+ - "~/.kerl"
+ - "~/erlang"
+
+ pre:
+ - sudo apt-get update
+ - 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: 3600
+
+test:
+ override:
+ - source $HOME/erlang/OTP-18.0.3/activate && make dialyze
+ - make -k ci:
+ timeout: 3600