42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
language: ruby
|
|
rvm:
|
|
- 1.8.7
|
|
- 1.9.2
|
|
- 1.9.3
|
|
- rbx-18mode
|
|
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"
|
|
- rvm: rbx-18mode
|
|
env: "RAILS_ENV=test DB=mysql BUNDLE_WITHOUT=rmagick:mysql2:postgres:sqlite"
|
|
allow_failures:
|
|
- rvm: rbx-18mode
|
|
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"
|
|
before_script:
|
|
- "rake ci:travis:prepare"
|
|
branches:
|
|
only:
|
|
- unstable
|
|
- master
|
|
- stable
|
|
- /^stable-.*$/
|
|
- /^release-.*$/
|
|
notifications:
|
|
email: false
|
|
irc: "irc.freenode.org#chiliproject"
|