.travis.yml 680 B

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