Martin819 | 07885fc | 2017-03-21 15:40:39 +0100 | [diff] [blame] | 1 | sudo: required |
| 2 | services: |
| 3 | - docker |
| 4 | |
| 5 | install: |
| 6 | - pip install PyYAML |
| 7 | - pip install virtualenv |
| 8 | - | |
| 9 | test -e Gemfile || cat <<EOF > Gemfile |
| 10 | source 'https://rubygems.org' |
| 11 | gem 'rake' |
| 12 | gem 'test-kitchen' |
| 13 | gem 'kitchen-docker' |
| 14 | gem 'kitchen-inspec' |
| 15 | gem 'inspec' |
| 16 | gem 'kitchen-salt', :git => 'https://github.com/epcim/kitchen-salt.git', :branch => 'dependencis-pkg-repo2' |
| 17 | #Waiting for PR#78 |
| 18 | #gem 'kitchen-salt', '>=0.2.25' |
| 19 | - bundle install |
| 20 | |
| 21 | env: |
| 22 | - PLATFORM=trevorj/salty-whales:trusty |
| 23 | - PLATFORM=trevorj/salty-whales:xenial |
| 24 | |
| 25 | before_script: |
Martin819 | d47757d | 2017-03-28 08:36:40 +0200 | [diff] [blame^] | 26 | - set -o pipefail |
| 27 | - make test | tail |
Martin819 | 07885fc | 2017-03-21 15:40:39 +0100 | [diff] [blame] | 28 | |
| 29 | script: |
| 30 | - test ! -e .kitchen.yml || bundle exec kitchen test -t tests/integration |