circle.yml 626 B

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