summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 46648d99239e7a8632a25edc3ef96286eaf96143 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
rvm: 2.0
gemfile: Gemfile

# This prevents testing branches that are created just for PRs
branches:
  only:
  - master

# Early warning system to catch if Rubygems breaks something
before_install:
  - gem update --system
  - gem install bundler

sudo: false
script:
  - bundle update
  - bundle exec rake pedant

matrix:
  include:
    - rvm: 2.0
    - rvm: 2.1
    - rvm: 2.1
      env: PEDANT_KNIFE_TESTS=true PEDANT_ALLOW_RVM=1
    - rvm: 2.1
      env: SINGLE_ORG=true
    - rvm: 2.1
      env: CHEF_FS=true
    - rvm: 2.1
      env:
        - CHEF_FS=true
        - "GEMFILE_MOD=\"gem 'chef', github: 'chef/chef'\""
    - rvm: 2.1
      env: FILE_STORE=true
    - rvm: 2.1
      script: bundle exec rake chef_spec
      env: TEST=chef_spec
    - rvm: 2.1
      script: bundle exec rake spec
      env: TEST=rake_spec

# allow_failures:
#   - rvm: 2.1
#     gemfile: gemfiles/latest-chef.gemfile
#     script: bundle exec rake chef_spec
#     enc: TEST=chef_spec_latest
#    - rvm: 2.1.1
#      gemfile: gemfiles/berkshelf.gemfile
#      script: bundle exec rake berkshelf_spec