comparison .svn/pristine/22/22ba58471e8f0b576b63d1df7183e3dc50b2b793.svn-base @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents
children
comparison
equal deleted inserted replaced
1516:b450a9d58aed 1517:dffacf8a6908
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.2
8 - 1.9.3
9 - 2.0
10 - 2.1
11 - jruby
12 matrix:
13 allow_failures:
14 # SCM tests fail randomly due to IO.popen().
15 # https://github.com/jruby/jruby/issues/779
16 - rvm: jruby
17 env:
18 - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
19 - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
20 - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
21 - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
22 - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
23 - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
24 - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
25 - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
26 - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
27 before_install:
28 - "sudo apt-get update -qq"
29 - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
30 script:
31 - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
32 - "export SCMS"
33 - "git --version"
34 - "bundle install"
35 - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
36 - "bundle install"
37 - "JRUBY_OPTS=-J-Xmx1024m bundle exec rake ci"
38 notifications:
39 email: false