.travis.yml 996B

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