18 lines
344 B
YAML
18 lines
344 B
YAML
|
---
|
||
|
|
||
|
services: "docker"
|
||
|
|
||
|
env:
|
||
|
- distro: "ubuntu1604"
|
||
|
- distro: "ubuntu1804"
|
||
|
- distro: "debian8"
|
||
|
- distro: "debian9"
|
||
|
|
||
|
script:
|
||
|
# Download test shim.
|
||
|
- wget -O ${PWD}/tests/test.sh https://gist.githubusercontent.com/nickjj/d12353b5b601e33cd62fda111359957a/raw
|
||
|
- chmod +x ${PWD}/tests/test.sh
|
||
|
|
||
|
# Run tests.
|
||
|
- ${PWD}/tests/test.sh
|