You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. # Redmine runs tests on own continuous integration server.
  2. # http://www.redmine.org/projects/redmine/wiki/Continuous_integration
  3. # You can also run tests on your environment.
  4. language: ruby
  5. rvm:
  6. - 1.8.7
  7. - 1.9.3
  8. - 2.0.0
  9. - 2.1.0
  10. - jruby-18mode
  11. - jruby-19mode
  12. env:
  13. - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
  14. - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
  15. - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
  16. - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
  17. - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
  18. - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
  19. - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
  20. - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
  21. - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
  22. before_install:
  23. - "sudo apt-get update -qq"
  24. - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
  25. script:
  26. - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
  27. - "export SCMS"
  28. - "bundle install"
  29. - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
  30. - "bundle install"
  31. - "JRUBY_OPTS=-J-Xmx1024m bundle exec rake ci"
  32. notifications:
  33. email: false