.travis.yml 591 B

123456789101112131415161718192021222324252627282930313233343536
  1. before_script:
  2. - "mysql -e 'create database sequelize_test;'"
  3. - "psql -c 'create database sequelize_test;' -U postgres"
  4. script:
  5. - "make test"
  6. notifications:
  7. email:
  8. - sascha@depold.com
  9. hipchat:
  10. - 40e8850aaba9854ac4c9963bd33f8b@253477
  11. irc:
  12. - "chat.freenode.net#sequelizejs"
  13. env:
  14. - DB=mysql DIALECT=mysql
  15. - DB=mysql DIALECT=postgres
  16. - DB=mysql DIALECT=postgres-native
  17. - DB=mysql DIALECT=sqlite
  18. - DB=mysql DIALECT=mariadb
  19. language: node_js
  20. node_js:
  21. - "0.8"
  22. - "0.10"
  23. branches:
  24. only:
  25. - master
  26. - 1.7.0
  27. cache:
  28. directories:
  29. - node_modules