.travis.yml 537 B

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