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

37 lines
626 B

dist: trusty
language: c
before_install:
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
- sudo apt-get update
install:
- sudo apt-get install -y build-essential gcc-multilib gcc-arm-embedded
script:
- make build_cross
- make build_bootloader
- make clean_stmhal
- make build_stmhal
- make clean_stmhal
- make build_stmhal_frozen
- make build_unix_frozen TREZORUI_NOUI=1
- make clean_unix
- make build_unix TREZORUI_NOUI=1
- make test
notifications:
webhooks:
urls:
- http://sway.gk2.sk:5000/travis
on_success: always
on_failure: always
on_start: always