mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
e0e9445a40
metasploit_data_models requires Ruby version >= 2.1.
41 lines
985 B
YAML
41 lines
985 B
YAML
bundler_args: --without coverage development pcap
|
|
cache: bundler
|
|
env:
|
|
- RAKE_TASKS="cucumber cucumber:boot"
|
|
- RAKE_TASKS=spec SPEC_OPTS="--tag content"
|
|
- RAKE_TASKS=spec SPEC_OPTS="--tag ~content"
|
|
|
|
language: ruby
|
|
matrix:
|
|
fast_finish: true
|
|
before_install:
|
|
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
|
- rake --version
|
|
# Fail build if msftidy is not successful
|
|
- 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 && bundle exec rake $RAKE_TASKS
|
|
sudo: false
|
|
rvm:
|
|
- '2.1'
|
|
|
|
notifications:
|
|
irc: "irc.freenode.org#msfnotify"
|
|
|
|
git:
|
|
depth: 5
|
|
|
|
# Blacklist certain branches from triggering travis builds
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
- metakitty
|