metasploit-framework/.travis.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

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