Update travis to build the example

Also remove the old failing tests so the build is passing.
This commit is contained in:
Scott Shawcroft 2018-11-25 11:51:23 -08:00
parent bf70f89240
commit 61bea0db1c
No known key found for this signature in database
GPG Key ID: FD0EDC4B6C53CA59
1 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,21 @@
language: c
dist: xenial
compiler:
- gcc
script: cd tests/lpc18xx_43xx && rake test:all
env:
- TRAVIS_SDK=arm
before_script:
- function var_search () { case "$1" in *$2*) true;; *) false;; esac; }
- sudo dpkg --add-architecture i386
- (! var_search "${TRAVIS_SDK-}" arm || (wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~trusty1_amd64.deb && sudo dpkg -i gcc-arm-embedded*_amd64.deb))
- sudo apt-get install -y realpath
- realpath --version
- gcc --version
- (! var_search "${TRAVIS_SDK-}" arm || arm-none-eabi-gcc --version)
script:
- make -j2 -C examples/device/cdc_msc_hid BOARD=metro_m0_express
- make -j2 -C examples/device/cdc_msc_hid BOARD=metro_m4_express