summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 72a9388e317fa17a42d14c136d26b40d514ad9bf (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
# 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
language: ruby
cache: bundler

script:
  - bundle update
  - bundle exec rake pedant

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