blob: ab213329f700d254d944eedfc8c169d17701a2fe [file] [log] [blame]
Martin Polreichbc9dcc52018-06-21 15:29:32 +02001language: python
2python:
3- "2.7.13"
Martin8196b937d72017-02-10 15:45:43 +01004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreich0f0b7c22018-11-07 14:43:20 +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
Martin8196b937d72017-02-10 15:45:43 +010015 - bundle install
16
Martin Polreich93111a82017-03-28 16:53:00 +020017env:
Martin Polreich03c09f32018-11-20 15:08:36 +010018 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2016.3/salt:2018_11_19 SUITE=keepalived-cluster
19 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19 SUITE=keepalived-cluster
20 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19 SUITE=keepalived-cluster
Martin Polreich93111a82017-03-28 16:53:00 +020021
Martin8196b937d72017-02-10 15:45:43 +010022before_script:
Martin Polreich93111a82017-03-28 16:53:00 +020023 - set -o pipefail
Martin819648c7a42017-02-16 09:52:53 +010024 - make test | tail
Martin8196b937d72017-02-10 15:45:43 +010025
26script:
Martin Polreichedfeca12018-01-05 13:11:12 +010027 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
28 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich93111a82017-03-28 16:53:00 +020029
30notifications:
31 webhooks:
32 urls:
33 - https://webhooks.gitter.im/e/6123573504759330786b
34 on_success: change # options: [always|never|change] default: always
35 on_failure: never # options: [always|never|change] default: always
36 on_start: never # options: [always|never|change] default: always
37 on_cancel: never # options: [always|never|change] default: always
38 on_error: never # options: [always|never|change] default: always
39 email: false