blob: 9e91ad8e18b4104fffebfd40706e2fe08fa5eefb [file] [log] [blame]
Martin Polreich0446f712018-06-21 15:29:14 +02001language: python
2python:
3- "2.7.13"
Martin819ef24a2a2017-02-14 14:25:57 +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 Polreich12b77ce2017-03-28 16:54:56 +020019 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819ef24a2a2017-02-14 14:25:57 +010020 - bundle install
21
Martin Polreich12b77ce2017-03-28 16:54:56 +020022env:
Martin Polreich4d2ef992018-04-18 10:50:01 +020023 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=cluster
24 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=single
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=cluster
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=single
27 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=cluster
28 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=single
29# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=cluster
30# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=single
31# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=cluster
32# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=single
Martin Polreich12b77ce2017-03-28 16:54:56 +020033
Martin819ef24a2a2017-02-14 14:25:57 +010034before_script:
Martin Polreich12b77ce2017-03-28 16:54:56 +020035 - set -o pipefail
Martin819ef24a2a2017-02-14 14:25:57 +010036 - make test | tail
37
38script:
Martin Polreicha40bc2f2018-01-05 13:09: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 Polreich12b77ce2017-03-28 16:54:56 +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