33eaf7fcce
This is only available with the autotools build for now.
23 lines
363 B
YAML
23 lines
363 B
YAML
language: c
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
env:
|
|
- BLD=cmake
|
|
- BLD=autotools
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libusb-dev
|
|
- cmake
|
|
- libcutter-dev
|
|
|
|
install:
|
|
- git clone https://github.com/nfc-tools/libnfc
|
|
- ./.travis-ci-build libnfc
|
|
script:
|
|
- ./.travis-ci-build .
|
|
- if [ "$BLD" = autotools ]; then (cd build-autotools && cutter test); fi
|