summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-01-18 23:59:32 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-01-18 23:59:32 +0000
commit1951aeac78974d38ffa5528feb4b97ef6d458377 (patch)
tree74a8b68b05cf83e542948009e59e7eda875d472d /.travis.yml
parentcaf49264c89a5bb1c3cff0dbe51be24839574555 (diff)
downloadredmine-1951aeac78974d38ffa5528feb4b97ef6d458377.tar.gz
redmine-1951aeac78974d38ffa5528feb4b97ef6d458377.zip
add .travis.yml and switch database user/password by environments
git-svn-id: http://svn.redmine.org/redmine/trunk@12665 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml41
1 files changed, 41 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..96fcb2e6e
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,41 @@
+# Redmine runs tests on own continuous integration server.
+# http://www.redmine.org/projects/redmine/wiki/Continuous_integration
+# You can also run on tests on your environment.
+language: ruby
+rvm:
+ - 1.8.7
+ - 1.9.3
+ - 2.0.0
+ - 2.1.0
+ - jruby-18mode
+ - jruby-19mode
+env:
+ - "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
+ - "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
+ - "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
+ - "TEST_SUITE=units DATABASE_ADAPTER=mysql"
+ - "TEST_SUITE=functionals DATABASE_ADAPTER=mysql"
+ - "TEST_SUITE=integration DATABASE_ADAPTER=mysql"
+ - "TEST_SUITE=units DATABASE_ADAPTER=sqlite3"
+ - "TEST_SUITE=functionals DATABASE_ADAPTER=sqlite3"
+ - "TEST_SUITE=integration DATABASE_ADAPTER=sqlite3"
+matrix:
+ allow_failures:
+ - rvm: jruby-19mode
+ env: "TEST_SUITE=units DATABASE_ADAPTER=postgresql"
+ - rvm: jruby-19mode
+ env: "TEST_SUITE=functionals DATABASE_ADAPTER=postgresql"
+ - rvm: jruby-19mode
+ env: "TEST_SUITE=integration DATABASE_ADAPTER=postgresql"
+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"
+ - "bundle install"
+ - "RUN_ON_NOT_OFFICIAL='' RUBY_VER=1.9 BRANCH=trunk bundle exec rake config/database.yml"
+ - "bundle install"
+ - "JRUBY_OPTS=-J-Xmx1024m bundle exec rake ci"
+notifications:
+ email: false