| language: python |
| python: |
| - "2.7.13" |
| sudo: required |
| services: |
| - docker |
| |
| install: |
| - pip install PyYAML |
| - pip install virtualenv |
| - | |
| if [ ! -e Gemfile ]; then |
| echo $PWD |
| 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' |
| fi |
| - bundle install |
| |
| env: |
| - UBUNTU_DISTRO=xenial UBUNTU_VERSION=16.04 OS_AZ=mcp-mk OS_IMAGE_ID=60878bd4-cb4a-4d71-ae02-2a8ee4476d10 SALT_VERSION='2018.3.3' SUITE=iptables |
| - UBUNTU_DISTRO=xenial UBUNTU_VERSION=16.04 OS_AZ=mcp-mk OS_IMAGE_ID=60878bd4-cb4a-4d71-ae02-2a8ee4476d10 SALT_VERSION='2017.7.6' SUITE=iptables |
| - UBUNTU_DISTRO=bionic UBUNTU_VERSION=18.04 OS_AZ=mcp-mk OS_IMAGE_ID=d9e69f28-5adc-4f2b-a084-4714454ead0a SALT_VERSION='2018.3.3' SUITE=iptables |
| - UBUNTU_DISTRO=bionic UBUNTU_VERSION=18.04 OS_AZ=mcp-mk OS_IMAGE_ID=d9e69f28-5adc-4f2b-a084-4714454ead0a SALT_VERSION='2017.7.6' SUITE=iptables |
| |
| before_script: |
| - set -o pipefail |
| - make test | tail |
| |
| script: |
| - test ! -e .kitchen.openstack.yml || bundle exec kitchen converge ${SUITE} || true |
| - test ! -e .kitchen.openstack.yml || bundle exec kitchen verify ${SUITE} -t tests/integration |
| |
| notifications: |
| on: |
| branch: master |
| webhooks: |
| urls: |
| - https://webhooks.gitter.im/e/6123573504759330786b |
| on_success: change # options: [always|never|change] default: always |
| on_failure: never # options: [always|never|change] default: always |
| on_start: never # options: [always|never|change] default: always |
| on_cancel: never # options: [always|never|change] default: always |
| on_error: never # options: [always|never|change] default: always |
| email: false |