summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2a9df630fbc9ef5c5585a5abb9a9e296f9f8f38f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: ruby
bundler_args: --without development
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
  email: false
rvm:
  - 1.9.3
  - 1.8.7
  - ruby-head
env:
  - PUPPET_GEM_VERSION="~> 2.7"
  - PUPPET_GEM_VERSION="~> 3"
matrix:
  allow_failures:
    - rvm: ruby-head
  exclude:
    - rvm: 1.9.3
      env: PUPPET_GEM_VERSION="~> 2.7"
    - rvm: ruby-head
      env: PUPPET_GEM_VERSION="~> 2.7"
notifications:
  webhooks:
    urls:
      - https://puppet-dev-community.herokuapp.com/event/travis-ci/
    on_success: always
    on_failure: always
    on_start: yes