##// END OF EJS Templates
tagged version 3.0.5...
tagged version 3.0.5 git-svn-id: http://svn.redmine.org/redmine/tags/3.0.5@14609 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13791:9c9419eadc38
r14227:70216b3c64cf 3.0.5
Show More
.travis.yml
45 lines | 1.4 KiB | text/x-yaml | YamlLexer
# Redmine runs tests on own continuous integration server.
# http://www.redmine.org/projects/redmine/wiki/Continuous_integration
# You can also run tests on your environment.
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
env:
- "SUITE=units DB=postgresql"
- "SUITE=functionals DB=postgresql"
- "SUITE=integration DB=postgresql"
- "SUITE=ui DB=postgresql"
- "SUITE=units DB=mysql"
- "SUITE=functionals DB=mysql"
- "SUITE=integration DB=mysql"
- "SUITE=ui DB=mysql"
- "SUITE=units DB=sqlite3"
- "SUITE=functionals DB=sqlite3"
- "SUITE=integration DB=sqlite3"
- "SUITE=ui DB=sqlite3"
matrix:
allow_failures:
# SCM tests fail randomly due to IO.popen().
# http://www.redmine.org/issues/19091
# https://github.com/jruby/jruby/issues/779
- rvm: jruby
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
script:
- export DATABASE_ADAPTER=${DB}
- "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
- "export SCMS"
- "git --version"
- "bundle install"
- "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
- "bundle install"
- "bundle exec rake ci:setup"
- phantomjs --webdriver 4444 &
- JRUBY_OPTS=-J-Xmx1024m bundle exec rake test:${SUITE}
notifications:
email: false