aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-08-26 18:22:50 +0200
committerLoïc Hoguin <[email protected]>2015-08-26 18:25:45 +0200
commit2441ea400c68ddbe90bcca374be85dd0d4fa0d10 (patch)
tree1fd6af4708f24221edb90ba3b1a6d048daa0f11c /circle.yml
parentad39742b05af0abf78e84622b4d5aff4ea5c6067 (diff)
downloadcowlib-2441ea400c68ddbe90bcca374be85dd0d4fa0d10.tar.gz
cowlib-2441ea400c68ddbe90bcca374be85dd0d4fa0d10.tar.bz2
cowlib-2441ea400c68ddbe90bcca374be85dd0d4fa0d10.zip
Update erlang.mk and start using CircleCI
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