metasploit-framework/.travis.yml

63 lines
1.4 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:
- '2.2'
2017-04-13 22:33:29 +00:00
- '2.3.4'
- '2.4.1'
2014-08-27 21:50:25 +00:00
env:
# TODO: restore these tests when the code passes them!
# - CMD='bundle exec rake cucumber cucumber:boot CREATE_BINSTUBS=true'
- CMD='bundle exec rake spec SPEC_OPTS="--tag content"'
- CMD='bundle exec rake spec SPEC_OPTS="--tag ~content"'
2014-09-03 00:07:39 +00:00
matrix:
fast_finish: true
2017-04-22 00:10:00 +00:00
include:
- rvm: ruby-head
2017-04-22 00:33:33 +00:00
env: CMD="docker-compose -f $TRAVIS_BUILD_DIR/docker-compose.yml build"
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
# Update the bundler
- gem install bundler
before_script:
- cp config/database.yml.travis config/database.yml
- bundle exec rake --version
- bundle exec rake db:create
- bundle exec rake db:migrate
# fail build if db/schema.rb update is not committed
- git diff --exit-code db/schema.rb
script:
- echo "${CMD}"
- bash -c "${CMD}"
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
2017-04-22 00:10:00 +00:00
services:
- docker