You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/.travis.yml

29 lines
516 B

sudo: false
dist: trusty
language: c
addons:
apt:
packages:
- build-essential
- git
- gcc-arm-none-eabi
- libnewlib-arm-none-eabi
script:
- CFLAGS="-std=c99" make -C vendor/libopencm3
- make
- make -C bootloader
- make -C fastflash
- make -C firmware
- make -C demo
- make -C firmware clean && make -C firmware FASTFLASH=1
notifications:
webhooks:
urls:
- http://ci-bot.satoshilabs.com:5000/travis
on_success: always
on_failure: always
on_start: always