##// END OF EJS Templates
remove jruby-21mode from .travis.yml...
Toshi MARUYAMA -
r13498:25c854b89339
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.9.3
6 - 1.9.3
7 - 2.0
7 - 2.0
8 - 2.1
8 - 2.1
9 - 2.2
9 - 2.2
10 - jruby-21mode
11 - jruby
10 - jruby
12 matrix:
11 matrix:
13 allow_failures:
12 allow_failures:
14 # SCM tests fail randomly due to IO.popen().
13 # SCM tests fail randomly due to IO.popen().
15 # https://github.com/jruby/jruby/issues/779
14 # https://github.com/jruby/jruby/issues/779
16 - rvm: jruby-21mode
17 - rvm: jruby
15 - rvm: jruby
18 env:
16 env:
19 - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
17 - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
20 - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
18 - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
21 - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
19 - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
22 - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
20 - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
23 - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
21 - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
24 - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
22 - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
25 - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
23 - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
26 - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
24 - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
27 - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
25 - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
28 before_install:
26 before_install:
29 - "sudo apt-get update -qq"
27 - "sudo apt-get update -qq"
30 - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
28 - "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
31 script:
29 script:
32 - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
30 - "SCMS=bazaar,cvs,subversion,git,mercurial,filesystem"
33 - "export SCMS"
31 - "export SCMS"
34 - "git --version"
32 - "git --version"
35 - "bundle install"
33 - "bundle install"
36 - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
34 - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
37 - "bundle install"
35 - "bundle install"
38 - "bundle exec rake ci:setup"
36 - "bundle exec rake ci:setup"
39 - "sh .travis.run-test.sh"
37 - "sh .travis.run-test.sh"
40 notifications:
38 notifications:
41 email: false
39 email: false
General Comments 0
You need to be logged in to leave comments. Login now