aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-27 00:05:36 +0200
committerLoïc Hoguin <[email protected]>2015-07-27 00:15:02 +0200
commit2f69190a05bd48da315ffa28f9868d1a1ad6d82c (patch)
tree7e39225d6339c63281db291a4ed7abaf7f13f770 /circle.yml
parent8a32e4832c8d0192159927e7e434407f0e38eb18 (diff)
downloaderlang.mk-2f69190a05bd48da315ffa28f9868d1a1ad6d82c.tar.gz
erlang.mk-2f69190a05bd48da315ffa28f9868d1a1ad6d82c.tar.bz2
erlang.mk-2f69190a05bd48da315ffa28f9868d1a1ad6d82c.zip
Attempt using CircleCI with erlang.mk
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..ffdadee
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,16 @@
+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
+ - CI_OTP=OTP-18.0.2 make -f core/core.mk -f plugins/ci.mk ci-prepare:
+ timeout: 3600
+
+test:
+ override:
+ - source $HOME/erlang/OTP-18.0.2/activate && make check:
+ timeout: 7200