17 lines
314 B
YAML
17 lines
314 B
YAML
env:
|
|
- PLATFORM=debian-wheezy
|
|
- PLATFORM=debian-jessie
|
|
|
|
sudo: required
|
|
|
|
language: python
|
|
|
|
services:
|
|
- docker
|
|
|
|
script:
|
|
- docker build -f tests/$PLATFORM.Dockerfile -t test-$PLATFORM . && docker run --name $PLATFORM test-$PLATFORM
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|