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

89 lines
3.9 KiB
YAML

---
sudo: required
language: python
services: docker
env:
- version=">=2.7,<2.8" distro="alpine-latest"
- version="" distro="alpine-latest"
- version="devel" distro="alpine-latest"
- version=">=2.7,<2.8" distro="alpine-edge"
- version="" distro="alpine-edge"
- version="devel" distro="alpine-edge"
- version=">=2.7,<2.8" distro="archlinux"
- version="" distro="archlinux"
- version="devel" distro="archlinux"
- version=">=2.7,<2.8" distro="centos-6"
- version="" distro="centos-6"
- version="devel" distro="centos-6"
- version=">=2.7,<2.8" distro="centos-latest"
- version="" distro="centos-latest"
- version="devel" distro="centos-latest"
- version=">=2.7,<2.8" distro="debian-stable"
- version="" distro="debian-stable"
- version="devel" distro="debian-stable"
- version=">=2.7,<2.8" distro="debian-unstable"
- version="" distro="debian-unstable"
- version="devel" distro="debian-unstable"
- version=">=2.7,<2.8" distro="fedora-latest"
- version="" distro="fedora-latest"
- version="devel" distro="fedora-latest"
- version=">=2.7,<2.8" distro="fedora-rawhide"
- version="" distro="fedora-rawhide"
- version="devel" distro="fedora-rawhide"
- version=">=2.7,<2.8" distro="opensuse-leap"
- version="" distro="opensuse-leap"
- version="devel" distro="opensuse-leap"
- version=">=2.7,<2.8" distro="ubuntu-rolling"
- version="" distro="ubuntu-rolling"
- version="devel" distro="ubuntu-rolling"
- version=">=2.7,<2.8" distro="ubuntu-latest"
- version="" distro="ubuntu-latest"
- version="devel" distro="ubuntu-latest"
- version=">=2.7,<2.8" distro="ubuntu-devel"
- version="" distro="ubuntu-devel"
- version="devel" distro="ubuntu-devel"
matrix:
allow_failures:
- env: version=">=2.7,<2.8" 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"
- env: version="devel" distro="centos-latest"
- env: version="devel" distro="debian-stable"
- env: version=">=2.7,<2.8" distro="debian-unstable"
- env: version="" distro="debian-unstable"
- env: version="devel" distro="debian-unstable"
- env: version="devel" distro="fedora-latest"
- env: version=">=2.7,<2.8" distro="fedora-rawhide"
- env: version="" distro="fedora-rawhide"
- env: version="devel" distro="fedora-rawhide"
- env: version="devel" distro="opensuse-leap"
- env: version="devel" distro="ubuntu-rolling"
- env: version=">=2.7,<2.8" 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: "D+mNeObKmTP+19Y1thU13eDdS0VdsUWj1L+Fs8k9ZGM0MG1kKjoQN5lzhBnn5G4KTAtK7h6H6LkFcHlRMPC7zQVKThsOlCYcDa1HDRdUAwBzk+KwmU5FwsGm2u/iYg1/P7eF/EcdB8FruhREfeYJKU/yxrYu/JKw7wSe70iTK3Xxs1R54cV9Ofyrr7UCr5lmkYyjb4OQGxPbaXPiFECFARD14H+bfDtLmu6wQp4k3qtyDsBcIoGeRQWp9dKJOaLPSh+9JRqT5RPjzQGkcbRW8PyGistnvhnEGoaPemg91koLHkYTKX+29o1NC5KlQNXqLuzSDydwExKsZ6NZfabK8oYS00rF8EVA1JPTVKEjpxJWQ003uVZfzH8TuAWSl5ZC2lRVZDQQ/DRmq4lav67ASB1gdSdNdaCDSa9vfG+RES6WKYXgoTqOkUVnAUcNs8zr+41UFr5vdJcKr2PG1uKAkqurQaIRZxJUL26pUljoqmkRhTndJiphEf52OHeZpU2h4pS1q71TTzinOtFM6Cf6nqnDD6BlzF/XLpxMkZkpMChombOqFfZuSYfHkpJ+uqzduqZ0oMJnWjnb//T02zYonQquAZTBC9rJAP0onCa9PRKcnhncWcyOILG8v6eADCOPTz4A8rQEpCpp8gE4hFvs2PTS5xduUxaf4uth4phBEFA="
email: false