mirror of
https://github.com/inspec/inspec
synced 2024-11-15 01:17:08 +00:00
f16238607d
This massively speeds up our testing, shaving our functionals by a third (639s -> 423s). We can realize this speedup either by setting the env or by jettisoning aws and azure into their own separately tested gems. This is currently turned off for travis just for demonstration purposes. Signed-off-by: Ryan Davis <zenspider@chef.io>
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
branches:
|
|
only:
|
|
- master
|
|
- /.*-stable/
|
|
- /cw.*/
|
|
- /mj.*/
|
|
- /zenspider.*/
|
|
language: ruby
|
|
cache:
|
|
bundler: true
|
|
directories:
|
|
- /home/travis/.rvm
|
|
dist: xenial
|
|
os:
|
|
- linux
|
|
- osx
|
|
services:
|
|
- docker
|
|
bundler_args: "--without tools maintenance deploy"
|
|
before_install:
|
|
- "gem update --system '3.0'"
|
|
- gem --version
|
|
- bundle --version
|
|
env:
|
|
- SLOW=1 NO_AWS=1
|
|
- CI_ENABLE_COVERAGE=true SLOW=1
|
|
script: bundle exec rake $SUITE
|
|
matrix:
|
|
fast_finish: true
|
|
exclude:
|
|
- os: osx
|
|
env: CI_ENABLE_COVERAGE=true SLOW=1
|
|
- os: linux
|
|
env: SLOW=1 NO_AWS=1
|
|
include:
|
|
- rvm: 2.6.3
|
|
- rvm: 2.5.5
|
|
- rvm: 2.4.5
|
|
- env: SUITE=test:integration[default-ubuntu-1604]
|
|
- env: SUITE=test:integration[default-ubuntu-1804]
|
|
- env: SUITE=test:integration[default-centos-6]
|
|
- env: SUITE=test:integration[default-centos-7]
|
|
- env: SUITE=test:integration[default-debian-8]
|
|
- env: SUITE=test:integration[default-debian-9]
|
|
- env: SUITE=test:integration[default-debian-10]
|
|
- env: SUITE=test:integration[default-oraclelinux-6]
|
|
- env: SUITE=test:integration[default-oraclelinux-7]
|
|
- env: SUITE=test:integration[default-fedora-29]
|
|
allow_failures:
|
|
- env: CI_ENABLE_COVERAGE=true SLOW=1
|