forked from chiliproject/chiliproject
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
33 lines (33 loc) · 995 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: ruby
rvm:
- 1.9.3
env:
- "TEST_SUITE=units RAILS_ENV=test DB=mysql2 BUNDLE_WITHOUT=rmagick:postgres:sqlite"
- "TEST_SUITE=functionals RAILS_ENV=test DB=mysql2 BUNDLE_WITHOUT=rmagick:postgres:sqlite"
- "TEST_SUITE=integration RAILS_ENV=test DB=mysql2 BUNDLE_WITHOUT=rmagick:postgres:sqlite"
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
- "mkdir files"
- "echo 'hola' > files/delete.me"
before_script:
- "gem update --system 1.8.25" # Rubygems 2.0.x fails with Rails 2.3
- "bundle exec rake ci:travis:prepare"
- "rm -rf tmp/test/darcs_repository" # Don't test Darcs on Travis. It breaks there :(
script: "./ci-build.sh"
branches:
only:
- chiliplus-stable
- chiliplus-beta
- unstable
- master
- stable
- test
- production
- /^stable-.*$/
- /^release-.*$/
- /^spike-.*$/
- /^fix-.*$/
- /^feature-.*$/
notifications:
email: true