mirror of
https://github.com/KevinMidboe/playbooks-retailor.git
synced 2025-10-29 09:40:34 +00:00
37 lines
622 B
YAML
37 lines
622 B
YAML
---
|
|
language: python
|
|
python: '3.6'
|
|
|
|
env:
|
|
global:
|
|
- MOLECULEW_USE_SYSTEM=true
|
|
matrix:
|
|
# Spin off separate builds for each of the following versions of Ansible
|
|
- MOLECULEW_ANSIBLE=2.8.16
|
|
- MOLECULEW_ANSIBLE=2.9.1
|
|
|
|
# Require Ubuntu 16.04
|
|
dist: xenial
|
|
|
|
# Require Docker
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
# Install dependencies
|
|
- ./moleculew wrapper-install
|
|
|
|
# Display versions
|
|
- ./moleculew wrapper-versions
|
|
|
|
script:
|
|
- ./moleculew test
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)([\.\-].*)?$/
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|