circle.yml 507 B

123456789101112131415161718192021
  1. general:
  2. artifacts:
  3. - "test/pkgs.log"
  4. dependencies:
  5. cache_directories:
  6. - "~/.kerl"
  7. - "~/erlang"
  8. pre:
  9. - sudo apt-get update
  10. - sudo apt-get install autoconf2.59
  11. - cd $HOME/bin && ln -s /usr/bin/autoconf2.59 autoconf
  12. - cd $HOME/bin && ln -s /usr/bin/autoheader2.59 autoheader
  13. - CI_OTP=OTP-18.0.2 make -f core/core.mk -f plugins/ci.mk ci-prepare:
  14. timeout: 3600
  15. test:
  16. override:
  17. - source $HOME/erlang/OTP-18.0.2/activate && make check:
  18. timeout: 7200