12 lines
262 B
YAML
12 lines
262 B
YAML
|
env:
|
||
|
- PLATFORM=debian-wheezy
|
||
|
- PLATFORM=debian-jessie
|
||
|
|
||
|
sudo: true
|
||
|
|
||
|
install:
|
||
|
- curl -sLo - http://j.mp/install-travis-docker | sh -xe
|
||
|
|
||
|
script:
|
||
|
- ./run 'docker build -f tests/$PLATFORM.Dockerfile -t test-$PLATFORM . && docker run --name $PLATFORM test-$PLATFORM'
|