mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
31 lines
459 B
YAML
31 lines
459 B
YAML
language: c
|
|
dist: bionic
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- sourceline: "ppa:team-gcc-arm-embedded/ppa"
|
|
packages:
|
|
- python3
|
|
- ruby
|
|
- gcc-arm-embedded
|
|
|
|
install:
|
|
- gem install ceedling
|
|
|
|
before_script:
|
|
- arm-none-eabi-gcc --version
|
|
|
|
script:
|
|
# Build all examples
|
|
- python3 tools/build_all.py
|
|
# Run unit tests
|
|
- cd test
|
|
- ceedling test:all
|
|
- cd ..
|
|
|
|
after_success:
|
|
- source tools/build_success.sh
|