.travis.yml 731 B

12345678910111213141516171819202122232425
  1. language: ruby
  2. bundler_args: --without development production --deployment
  3. cache:
  4. directories:
  5. - vendor/bundle
  6. env:
  7. - APP_SECRET_TOKEN=b2724973fd81c2f4ac0f92ac48eb3f0152c4a11824c122bcf783419a4c51d8b9bba81c8ba6a66c7de599677c7f486242cf819775c433908e77c739c5c8ae118d
  8. rvm:
  9. - 2.0.0
  10. - 2.1.1
  11. - 1.9.3
  12. before_install:
  13. - travis_retry gem install bundler
  14. before_script:
  15. - mysql -e 'create database huginn_test;'
  16. - bundle exec rake db:migrate db:test:prepare
  17. script: "bundle exec rake"
  18. notifications:
  19. irc:
  20. channels:
  21. - "chat.freenode.net#huginn"
  22. template:
  23. - "<%{author}> %{branch} - %{commit} (%{commit_message}): %{message}"
  24. - "Change view : %{compare_url}"
  25. - "Build details : %{build_url}"