.travis.yml 308 B

123456789101112131415161718
  1. # This is the project file for the automated build system travis (travis-ci.com).
  2. sudo: required
  3. dist: trusty
  4. language: c
  5. compiler: gcc
  6. before_install:
  7. - sudo apt-get update -qq
  8. - sudo apt-get install -qq libhidapi-dev
  9. - ./autogen.sh
  10. install: true # skip install step
  11. script: ./configure && make