anthem/.travis.yml

20 lines
407 B
YAML
Raw Normal View History

sudo: required
services:
- docker
2016-11-21 17:51:14 +01:00
matrix:
include:
- env: distribution=arch-latest
2017-03-23 01:06:44 +01:00
os: linux
language: cpp
- env: distribution=ubuntu-18.04
2016-11-21 17:51:14 +01:00
os: linux
language: cpp
before_install:
- docker build -t ${distribution} - < .ci/Dockerfile-${distribution}
2016-11-21 17:51:14 +01:00
script:
- docker run --mount source=$(pwd),target=/app,type=bind -w /app ${distribution} /bin/bash -c ".ci/ci.sh"