aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-26 22:52:10 +0200
committerLoïc Hoguin <[email protected]>2015-07-26 22:54:01 +0200
commitcafd77e72ad186319a02fb319362acccd336f667 (patch)
tree877bd75335b27f6149a6bd061a4a17ee8e16d035 /circle.yml
parent427230d6f94f5b8a396fd504a73d73d1d65ab0a7 (diff)
downloadgun-cafd77e72ad186319a02fb319362acccd336f667.tar.gz
gun-cafd77e72ad186319a02fb319362acccd336f667.tar.bz2
gun-cafd77e72ad186319a02fb319362acccd336f667.zip
Add CircleCI
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..adc9810
--- /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: 3600
+
+test:
+ override:
+ - source $HOME/erlang/OTP-18.0.2/activate && make dialyze
+ - make -k ci:
+ timeout: 3600