blob: 744abcf3b85306e7173baa1bbf4e404dd9eacf07 [file] [log] [blame]
Martin Polreich808ac552018-06-21 15:26:57 +02001language: python
2python:
3- "2.7.13"
Martin819828f49a2017-03-14 11:13:28 +01004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreich8b6ba512018-11-07 14:35:19 +010012 if [ ! -e Gemfile ]; then
13 curl -s -o ./Gemfile 'https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas/salt-formulas-scripts.git;a=blob_plain;f=Gemfile;hb=refs/heads/master'
14 fi
Martin819828f49a2017-03-14 11:13:28 +010015 - bundle install
16
17env:
Martin Polreich82c3e222018-04-06 10:25:52 +020018 - PLATFORM=epcim/salt:saltstack-ubuntu-trusty-salt-2017.7 SUITE=apache-server-php5
Martin Polreich82c3e222018-04-06 10:25:52 +020019 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=apache-server-php7
Oleksii Grudev0cfe7c12018-06-08 11:34:32 +030020 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=apache-server-php7-ssl
Martin Polreich82c3e222018-04-06 10:25:52 +020021 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=apache-server-php7
Oleksii Grudev0cfe7c12018-06-08 11:34:32 +030022 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=apache-server-php7-ssl
Martin Polreich82c3e222018-04-06 10:25:52 +020023# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=apache-server-php7
24# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=apache-server-php7
Martin Polreich08a770b2017-03-28 16:45:15 +020025
Martin819828f49a2017-03-14 11:13:28 +010026before_script:
Martin8194d8b3b22017-03-28 08:10:38 +020027 - set -o pipefail
Martin Polreich08a770b2017-03-28 16:45:15 +020028 - make test | tail
29
Martin819828f49a2017-03-14 11:13:28 +010030script:
Martin Polreich43469922018-01-05 12:42:18 +010031 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
32 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich08a770b2017-03-28 16:45:15 +020033
34notifications:
35 webhooks:
36 urls:
37 - https://webhooks.gitter.im/e/6123573504759330786b
38 on_success: change # options: [always|never|change] default: always
39 on_failure: never # options: [always|never|change] default: always
40 on_start: never # options: [always|never|change] default: always
41 on_cancel: never # options: [always|never|change] default: always
42 on_error: never # options: [always|never|change] default: always
43 email: false