##// END OF EJS Templates
Merged r13880 from trunk to 2.6-stable...
Toshi MARUYAMA -
r13502:10b0c58ba9f8
parent child
Show More
@@ -1,41 +1,39
1 # Redmine runs tests on own continuous integration server.
1 # Redmine runs tests on own continuous integration server.
2 # http://www.redmine.org/projects/redmine/wiki/Continuous_integration
2 # http://www.redmine.org/projects/redmine/wiki/Continuous_integration
3 # You can also run tests on your environment.
3 # You can also run tests on your environment.
4 language: ruby
4 language: ruby
5 rvm:
5 rvm:
6 - 1.8.7
6 - 1.8.7
7 - 1.9.2
7 - 1.9.2
8 - 1.9.3
8 - 1.9.3
9 - 2.0
9 - 2.0
10 - 2.1
10 - 2.1
11 - jruby-21mode
12 - jruby
11 - jruby
13 matrix:
12 matrix:
14 allow_failures:
13 allow_failures:
15 # SCM tests fail randomly due to IO.popen().
14 # SCM tests fail randomly due to IO.popen().
16 # https://github.com/jruby/jruby/issues/779
15 # https://github.com/jruby/jruby/issues/779
17 - rvm: jruby-21mode
18 - rvm: jruby
16 - rvm: jruby
19 env:
17 env:
20 - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
18 - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
21 - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
19 - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
22 - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
20 - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
23 - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
21 - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
24 - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
22 - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
25 - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
23 - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
26 - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
24 - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
27 - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
25 - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
28 - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
26 - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
29 before_install:
27 before_install:
30 - "sudo apt-get update -qq"
28 - "sudo apt-get update -qq"
31 - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
29 - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
32 script:
30 script:
33 - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
31 - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
34 - "export SCMS"
32 - "export SCMS"
35 - "git --version"
33 - "git --version"
36 - "bundle install"
34 - "bundle install"
37 - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
35 - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
38 - "bundle install"
36 - "bundle install"
39 - "JRUBY_OPTS=-J-Xmx1024m bundle exec rake ci"
37 - "JRUBY_OPTS=-J-Xmx1024m bundle exec rake ci"
40 notifications:
38 notifications:
41 email: false
39 email: false
General Comments 0
You need to be logged in to leave comments. Login now