circle.yml 481 B

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