blob: f34c2e3aff2c34e9d4b409ef60704261188a4cba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
language: ruby
sudo: false
branches:
only:
- master
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.1.6
env: PUPPET_VERSION="~> 4.0" ORDERING="random"
allow_failures:
- env: PUPPET_VERSION="~> 4.0" ORDERING="random"
notifications:
email: false
|