Martin Polreich | 0d51ce4 | 2018-06-21 15:28:45 +0200 | [diff] [blame^] | 1 | language: python |
| 2 | python: |
| 3 | - "2.7.13" |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 4 | sudo: required |
| 5 | services: |
| 6 | - docker |
| 7 | |
| 8 | install: |
| 9 | - pip install PyYAML |
| 10 | - pip install virtualenv |
| 11 | - | |
| 12 | test -e Gemfile || cat <<EOF > Gemfile |
| 13 | source 'https://rubygems.org' |
| 14 | gem 'rake' |
| 15 | gem 'test-kitchen' |
| 16 | gem 'kitchen-docker' |
| 17 | gem 'kitchen-inspec' |
| 18 | gem 'inspec' |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 19 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 20 | - bundle install |
| 21 | |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 22 | env: |
Martin Polreich | c1198be | 2018-04-11 15:34:36 +0200 | [diff] [blame] | 23 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client-single |
| 24 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-single |
| 25 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client-single |
| 26 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-single |
| 27 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client-single |
| 28 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=server-single |
| 29 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client-single |
| 30 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-single |
| 31 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client-single |
| 32 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=server-single |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 33 | |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 34 | before_script: |
Martin Polreich | 17d0a0e | 2017-04-04 15:06:50 +0200 | [diff] [blame] | 35 | - set -o pipefail |
| 36 | - make test | tail |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 37 | |
| 38 | script: |
Martin Polreich | 7b94d59 | 2018-01-05 13:06:12 +0100 | [diff] [blame] | 39 | - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true |
| 40 | - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 41 | |
| 42 | notifications: |
| 43 | webhooks: |
| 44 | urls: |
| 45 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 46 | on_success: change # options: [always|never|change] default: always |
| 47 | on_failure: never # options: [always|never|change] default: always |
| 48 | on_start: never # options: [always|never|change] default: always |
| 49 | on_cancel: never # options: [always|never|change] default: always |
| 50 | on_error: never # options: [always|never|change] default: always |
| 51 | email: false |