blob: bf9975016a7612a58f0a7ecb1a03134369723cef [file] [log] [blame]
Martin Polreicha60f4b22018-06-21 15:29:04 +02001language: python
2python:
3- "2.7.13"
Petr Michalecfc1801e2017-03-10 10:30:26 +01004sudo: required
5services:
6 - docker
7
8install:
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 Polreich04493d32017-03-28 16:50:07 +020019 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalecfc1801e2017-03-10 10:30:26 +010020 - bundle install
21
22env:
Martin Polreichdab174c2018-02-16 15:14:38 +010023 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-cluster
24 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-plugin-dirs
25 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-single
26 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-cluster
27 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-plugin-dirs
28 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-single
29# - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-cluster
30# - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-plugin-dirs
31# - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-single
Petr Michalecfc1801e2017-03-10 10:30:26 +010032
Martin Polreich04493d32017-03-28 16:50:07 +020033
Petr Michalecfc1801e2017-03-10 10:30:26 +010034before_script:
Martin Polreich04493d32017-03-28 16:50:07 +020035 - set -o pipefail
36 - make test | tail
Petr Michalecfc1801e2017-03-10 10:30:26 +010037
38script:
Martin Polreich5ac43ce2018-01-05 13:08:15 +010039 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
40 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich04493d32017-03-28 16:50:07 +020041
42notifications:
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