2016-03-02 22:57:53 +01:00
|
|
|
sudo: false
|
|
|
|
group: stable
|
2014-12-31 20:25:48 +01:00
|
|
|
bundler_args: --without coverage development pcap
|
2014-12-31 21:00:11 +01:00
|
|
|
cache: bundler
|
2016-03-07 20:25:37 +01:00
|
|
|
addons:
|
|
|
|
postgresql: '9.3'
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libpcap-dev
|
|
|
|
- graphviz
|
|
|
|
language: ruby
|
|
|
|
rvm:
|
2016-03-31 23:40:15 +02:00
|
|
|
- '2.1.9'
|
2016-03-07 20:25:37 +01:00
|
|
|
|
2014-08-27 23:50:25 +02:00
|
|
|
env:
|
2015-12-30 18:00:45 +01:00
|
|
|
- RAKE_TASKS="cucumber cucumber:boot" CREATE_BINSTUBS=true
|
2014-12-05 20:37:18 +01:00
|
|
|
- RAKE_TASKS=spec SPEC_OPTS="--tag content"
|
|
|
|
- RAKE_TASKS=spec SPEC_OPTS="--tag ~content"
|
2014-09-03 02:07:39 +02:00
|
|
|
|
2014-11-17 15:33:05 +01:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2013-02-19 22:41:31 +01:00
|
|
|
before_install:
|
2014-12-05 20:29:18 +01:00
|
|
|
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
2014-01-06 19:47:36 +01:00
|
|
|
- rake --version
|
2015-02-11 20:48:13 +01:00
|
|
|
# Fail build if msftidy is not successful
|
2015-02-11 20:40:53 +01:00
|
|
|
- ln -sf ../../tools/dev/pre-commit-hook.rb ./.git/hooks/post-merge
|
|
|
|
- ls -la ./.git/hooks
|
|
|
|
- ./.git/hooks/post-merge
|
2014-04-03 17:41:42 +02:00
|
|
|
before_script:
|
2013-03-15 14:48:20 +01:00
|
|
|
- cp config/database.yml.travis config/database.yml
|
2014-01-06 19:29:50 +01:00
|
|
|
- bundle exec rake --version
|
|
|
|
- bundle exec rake db:create
|
|
|
|
- bundle exec rake db:migrate
|
2014-11-14 19:50:27 +01:00
|
|
|
script:
|
2014-11-14 16:57:03 +01:00
|
|
|
# fail build if db/schema.rb update is not committed
|
2015-05-29 18:34:25 +02:00
|
|
|
- git diff --exit-code db/schema.rb && bundle exec rake $RAKE_TASKS
|
2012-11-09 22:02:09 +01:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
irc: "irc.freenode.org#msfnotify"
|
|
|
|
|
2013-01-24 22:48:04 +01:00
|
|
|
git:
|
2013-09-17 00:23:16 +02:00
|
|
|
depth: 5
|
2014-12-03 20:58:06 +01:00
|
|
|
|
|
|
|
# Blacklist certain branches from triggering travis builds
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- gh-pages
|
2016-03-31 23:40:15 +02:00
|
|
|
- metakitty
|