aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-08-13 15:58:36 +0200
committerLoïc Hoguin <[email protected]>2015-08-13 16:04:08 +0200
commit54a3931ff0423ef51c4ab3c8a97bee2b52d78e6a (patch)
treef8b80e6d8b520b5748184bc9c5504eb198bf5e10 /circle.yml
parent9508d521c4f8ffd88374281c8e37ebaaa262a784 (diff)
downloadranch-54a3931ff0423ef51c4ab3c8a97bee2b52d78e6a.tar.gz
ranch-54a3931ff0423ef51c4ab3c8a97bee2b52d78e6a.tar.bz2
ranch-54a3931ff0423ef51c4ab3c8a97bee2b52d78e6a.zip
Add initial circle.yml file
Only half the OTP versions are enabled so far, and the build will probably fail, but gotta start somewhere.
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..1e712d3
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,21 @@
+general:
+ artifacts:
+ - "logs"
+
+dependencies:
+ cache_directories:
+ - "~/.kerl"
+ - "~/erlang"
+
+ pre:
+ - 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: 7200
+
+test:
+ override:
+ - source $HOME/erlang/OTP-18.0.2/activate && make dialyze
+ - make -k ci:
+ timeout: 3600