##// END OF EJS Templates
Merged r14118 from trunk to 3.0-stable...
Merged r14118 from trunk to 3.0-stable Gemfile: remove "ffi" ffi 1.9.7 building error is fixed. https://github.com/ffi/ffi/issues/414#issuecomment-81405252 r14118 comment has typo, problem version is not 1.9.6, it is 1.9.7. git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14126 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13693:fae1ce430c04
r13744:fee5faa9b8c6
Show More
.travis.yml
44 lines | 1.6 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
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
env:
- "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
- "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
- "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
- "TEST_SUITE=ui DATABASE_ADAPTER=postgresql"
- "TEST_SUITE=units DATABASE_ADAPTER=mysql"
- "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
- "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
- "TEST_SUITE=ui DATABASE_ADAPTER=mysql"
- "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
- "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
- "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
- "TEST_SUITE=ui DATABASE_ADAPTER=sqlite3"
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
script:
- "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:${TEST_SUITE}
notifications:
email: false