forked from aeolusproject/conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 664 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 664 Bytes
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
language: ruby
rvm:
- 1.8.7
- 1.9.3
gemfile: src/Gemfile
env:
- SUITE=cucumber
- SUITE=spec
before_install:
- sed -i s/'pg'/'sqlite3'/ src/Gemfile
install:
- cd src
- bundle install --path bundle
before_script:
- cp config/database.sqlite config/database.yml
- bundle exec rake dc:oauth_keys
- bundle exec rake db:drop
- bundle exec rake db:create
- bundle exec rake db:migrate
- bundle exec rake db:seed
- bundle exec rake db:test:prepare
script:
- bundle exec rake $SUITE
notifications:
irc:
channels:
- "irc.freenode.org#aeolus"
use_notice: true
skip_join: false
on_success: change
on_failure: change