libfreefare/.travis.yml

26 lines
487 B
YAML
Raw Permalink Normal View History

2017-06-26 11:09:17 +02:00
language: c
compiler:
- clang
- gcc
env:
- BLD=cmake
- BLD=autotools
2017-06-26 11:09:17 +02:00
addons:
apt:
2017-06-26 11:52:00 +02:00
sources:
- sourceline: 'ppa:cutter-testing-framework/ppa'
2017-06-26 11:09:17 +02:00
packages:
- libusb-dev
- cmake
2017-06-26 11:52:00 +02:00
- cutter-testing-framework
2017-06-26 11:09:17 +02:00
install:
- git clone https://github.com/nfc-tools/libnfc
- ./.travis-ci-build libnfc
script:
- ./.travis-ci-build .
- if [ "$BLD" = autotools ]; then (cd build-autotools && make check TESTS_ENVIRONMENT=SKIP_TESTS=1 && cutter test); fi