mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
61bea0db1c
Also remove the old failing tests so the build is passing.
22 lines
678 B
YAML
22 lines
678 B
YAML
language: c
|
|
dist: xenial
|
|
compiler:
|
|
- gcc
|
|
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
|