2012-04-28 17:52:29 +04:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
|
|
|
- 1.8.7
|
|
|
|
- 1.9.2
|
|
|
|
- 1.9.3
|
2012-06-02 16:18:43 +04:00
|
|
|
- rbx-18mode
|
2012-04-28 17:52:29 +04:00
|
|
|
env:
|
|
|
|
- "RAILS_ENV=test DB=mysql BUNDLE_WITHOUT=rmagick:mysql2:postgres:sqlite"
|
|
|
|
- "RAILS_ENV=test DB=mysql2 BUNDLE_WITHOUT=rmagick:mysql:postgres:sqlite"
|
|
|
|
- "RAILS_ENV=test DB=postgres BUNDLE_WITHOUT=rmagick:mysql:mysql2:sqlite"
|
|
|
|
- "RAILS_ENV=test DB=sqlite BUNDLE_WITHOUT=rmagick:mysql:mysql2:postgres"
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
- rvm: 1.9.2
|
|
|
|
env: "RAILS_ENV=test DB=mysql BUNDLE_WITHOUT=rmagick:mysql2:postgres:sqlite"
|
|
|
|
- rvm: 1.9.3
|
|
|
|
env: "RAILS_ENV=test DB=mysql BUNDLE_WITHOUT=rmagick:mysql2:postgres:sqlite"
|
2012-06-02 16:18:43 +04:00
|
|
|
- rvm: rbx-18mode
|
|
|
|
env: "RAILS_ENV=test DB=mysql BUNDLE_WITHOUT=rmagick:mysql2:postgres:sqlite"
|
|
|
|
allow_failures:
|
|
|
|
- rvm: rbx-18mode
|
2013-01-07 17:14:21 +04:00
|
|
|
before_install:
|
|
|
|
- "sudo apt-get update -qq"
|
|
|
|
- "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
|
|
|
|
|
|
|
|
# Our tests don't work on Darcs >= 2.5, so we use Darcs 2.3 from Ubuntu Lucy
|
|
|
|
- "sudo apt-get --no-install-recommends install libc6 libcurl3-gnutls libgmp3c2 libncurses5 zlib1g"
|
|
|
|
- "wget http://de.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi5_3.0.9-1_i386.deb -O /tmp/libffi5_3.0.9-1_i386.deb; sudo dpkg -i /tmp/libffi5_3.0.9-1_i386.deb"
|
|
|
|
- "wget http://de.archive.ubuntu.com/ubuntu/pool/universe/d/darcs/darcs_2.3.0-3_i386.deb -O /tmp/darcs_2.3.0-3_i386.deb; sudo dpkg -i /tmp/darcs_2.3.0-3_i386.deb"
|
2012-04-28 17:52:29 +04:00
|
|
|
before_script:
|
|
|
|
- "rake ci:travis:prepare"
|
|
|
|
branches:
|
|
|
|
only:
|
2012-05-14 16:18:52 +04:00
|
|
|
- unstable
|
2012-04-28 17:52:29 +04:00
|
|
|
- master
|
2012-05-14 16:18:52 +04:00
|
|
|
- stable
|
2012-06-09 21:02:18 +04:00
|
|
|
- /^stable-.*$/
|
|
|
|
- /^release-.*$/
|
2012-04-28 17:52:29 +04:00
|
|
|
notifications:
|
|
|
|
email: false
|
2012-06-09 14:02:54 +04:00
|
|
|
irc: "irc.freenode.org#chiliproject"
|