1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-02 07:40:19 +02:00
metasploit-framework/.travis.yml

76 lines
2.1 KiB
YAML
Raw Normal View History

2016-12-23 23:43:00 +01:00
dist: trusty
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
addons:
2016-12-23 23:32:48 +01:00
postgresql: '9.6'
apt:
packages:
- libpcap-dev
- graphviz
language: ruby
rvm:
- '2.5.8'
- '2.6.6'
2014-08-27 23:50:25 +02:00
env:
2017-06-20 21:02:32 +02:00
- CMD='bundle exec rake rspec-rerun:spec SPEC_OPTS="--tag content"'
- CMD='bundle exec rake rspec-rerun:spec SPEC_OPTS="--tag ~content"'
# Used for testing the remote data service
2018-04-27 00:47:54 +02:00
- CMD='bundle exec rake rspec-rerun:spec SPEC_OPTS="--tag content" REMOTE_DB=1'
- CMD='bundle exec rake rspec-rerun:spec SPEC_OPTS="--tag ~content" REMOTE_DB=1'
2014-09-03 02:07:39 +02:00
matrix:
fast_finish: true
2017-09-29 09:45:38 +02:00
jobs:
# build docker image
2017-04-22 02:10:00 +02:00
include:
2018-09-18 00:02:06 +02:00
- env: CMD="/usr/bin/docker-compose build" DOCKER="true"
2017-09-29 09:45:38 +02:00
# we do not need any setup
before_install: skip
install: skip
2018-09-18 00:02:06 +02:00
before_script:
- curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/bin
2013-02-19 22:41:31 +01:00
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- 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
# Update the bundler
2019-12-16 17:53:08 +01:00
- gem update --system 3.0.6
- 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}"
2017-09-29 09:45:38 +02:00
# we need travis_wait because the Docker build job can take longer than 10 minutes
2018-09-18 04:32:35 +02:00
#- if [[ "${DOCKER}" == "true" ]]; then echo "Starting Docker build job"; travis_wait 40 "${CMD}"; else bash -c "${CMD}"; fi
# docker_wait is currently broken on travis-ci, so let's just run CMD directly for now
2018-09-18 00:02:06 +02:00
- 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 23:40:15 +02:00
- metakitty
2017-04-22 02:10:00 +02:00
services:
- docker