blob: 36044cbbc265bf8359f5ae8120b11b7807332409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
language: c
sudo: required
dist: trusty
services:
- docker
before_script:
- docker build -t gusb-fedora -f contrib/ci/Dockerfile-fedora .
# - docker build -t gusb-debian-stretch -f contrib/ci/Dockerfile-debian-stretch .
script:
- docker run -t -v `pwd`:/build gusb-fedora ./contrib/ci/build_and_test.sh -Dtests=false
# - docker run -t -v `pwd`:/build gusb-debian-stretch ./contrib/ci/build_and_test.sh -Dtests=false
|