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

20 lines
418 B

sudo: false
language: c
addons:
apt:
packages:
- build-essential
- git
- gcc-arm-none-eabi
install:
- git clone https://github.com/libopencm3/libopencm3
script:
- cd libopencm3; make; cd ..
- TOOLCHAIN_DIR=libopencm3 make
- cd firmware; TOOLCHAIN_DIR=../libopencm3 make; cd ..
- cd bootloader; TOOLCHAIN_DIR=../libopencm3 make; cd ..
- cd demo; TOOLCHAIN_DIR=../libopencm3 make; cd ..