ansible-development-environ.../roles/python_pip/.travis.yml

97 lines
4.4 KiB
YAML

---
sudo: required
language: python
services: docker
env:
- version=">=2.6,<2.7" distro="alpine-latest"
- version="" distro="alpine-latest"
- version="devel" distro="alpine-latest"
- version=">=2.6,<2.7" distro="alpine-edge"
- version="" distro="alpine-edge"
- version="devel" distro="alpine-edge"
- version=">=2.6,<2.7" distro="archlinux"
- version="" distro="archlinux"
- version="devel" distro="archlinux"
- version=">=2.6,<2.7" distro="centos-6" expectation="fail"
- version="" distro="centos-6" expectation="fail"
- version="devel" distro="centos-6" expectation="fail"
- version=">=2.6,<2.7" distro="centos-latest"
- version="" distro="centos-latest"
- version="devel" distro="centos-latest"
- version=">=2.6,<2.7" distro="debian-latest"
- version="" distro="debian-latest"
- version="devel" distro="debian-latest"
- version=">=2.6,<2.7" distro="debian-stable"
- version="" distro="debian-stable"
- version="devel" distro="debian-stable"
- version=">=2.6,<2.7" distro="debian-unstable"
- version="" distro="debian-unstable"
- version="devel" distro="debian-unstable"
- version=">=2.6,<2.7" distro="fedora-latest"
- version="" distro="fedora-latest"
- version="devel" distro="fedora-latest"
- version=">=2.6,<2.7" distro="fedora-rawhide"
- version="" distro="fedora-rawhide"
- version="devel" distro="fedora-rawhide"
- version=">=2.6,<2.7" distro="opensuse-leap"
- version="" distro="opensuse-leap"
- version="devel" distro="opensuse-leap"
- version=">=2.6,<2.7" distro="opensuse-tumbleweed"
- version="" distro="opensuse-tumbleweed"
- version="devel" distro="opensuse-tumbleweed"
- version=">=2.6,<2.7" distro="ubuntu-artful"
- version="" distro="ubuntu-artful"
- version="devel" distro="ubuntu-artful"
- version=">=2.6,<2.7" distro="ubuntu-latest"
- version="" distro="ubuntu-latest"
- version="devel" distro="ubuntu-latest"
- version=">=2.6,<2.7" distro="ubuntu-devel"
- version="" distro="ubuntu-devel"
- version="devel" distro="ubuntu-devel"
matrix:
allow_failures:
- env: version=">=2.6,<2.7" distro="alpine-edge"
- env: version="" distro="alpine-edge"
- env: version="devel" distro="alpine-edge"
- env: version="devel" distro="alpine-latest"
- env: version="devel" distro="archlinux"
- env: version="devel" distro="centos-6" expectation="fail"
- env: version="devel" distro="centos-latest"
- env: version="devel" distro="debian-latest"
- env: version="devel" distro="debian-stable"
- env: version=">=2.6,<2.7" distro="debian-unstable"
- env: version="" distro="debian-unstable"
- env: version="devel" distro="debian-unstable"
- env: version="devel" distro="fedora-latest"
- env: version=">=2.6,<2.7" distro="fedora-rawhide"
- env: version="" distro="fedora-rawhide"
- env: version="devel" distro="fedora-rawhide"
- env: version="devel" distro="opensuse-leap"
- env: version="devel" distro="opensuse-tumbleweed"
- env: version="devel" distro="ubuntu-artful"
- env: version=">=2.6,<2.7" distro="ubuntu-devel"
- env: version="" distro="ubuntu-devel"
- env: version="devel" distro="ubuntu-devel"
- env: version="devel" distro="ubuntu-latest"
cache:
- pip
install:
- pip install --upgrade pip
- if [ "${version}" != "devel" ] ; then pip install ansible"${version}" ; fi
- if [ "${version}" = "devel" ] ; then pip install git+https://github.com/ansible/ansible.git@devel ; fi
- pip install molecule
- pip install docker
script:
- if [ "${expectation}" = "fail" ] ; then ! molecule test --scenario-name "${distro}" ; else molecule test --scenario-name "${distro}" ; fi
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
slack:
secure: "imFHUBzYmrrkXXSZNhqP/epuJgWJUvCmU3bpLM87AV8WST/jY2Ex46DjAIeLpZanwf6RPDRESLPYPTKTyVWU2xWk4EvlgJePZWGsy7n0x8xg+hxMU4BbCc4dHsi9kWCa6cgKNvEUtFRqvNCd+PaovvvcoFCXPrGa5o0W9ZawYYChFuA122Q/7/lsqA3GaC/NZSsUyj2K8qvYeeZbdNOTwYfOL0kT808eOQRL/rYzsD/9wa+SIw4sIAAymZDQi5fgo1HvfcMSnKHtdNvJ1Js9ncrsNY6S+xGzUPOcImQ4n694ITNn4MuaGSG2DNGqJBbewqOED43v20pYjRmk7JAIo9vc0yD0wWbJ7sX3WMG46VPT3X51Ib9B0X54fZUil3d+6MEbLi6hJKU1YtirGV98tTGgKlUKexvEoYsP8nc4MsEg+ogh9GEa1Nu7pDCn80baPUKx7+pm0JAavFmqEskpiuyI3gFUTVjp7zuV91JaVU4Qtow/yANmXhJFOVLvjYGr40NqftgPxZfq2rvrwyvey70CxzfnbCkOaJOOB5Bx/fV3DSOlok5yCfDDIAPjcp0Zwf6TWaWtfsZhEdzvfHbWSzkY7nRcAp/vIKUnpQELm03DyfSgHH7cAkVvi/4r3Z07cZGaDM6wWYTHWpU/ISF25JvbjmKte+kMwprvMs5G3AQ="
email: false