2017-04-01 21:59:47 +00:00
|
|
|
sudo: false
|
2016-10-03 14:38:55 +00:00
|
|
|
dist: trusty
|
2016-10-03 14:32:58 +00:00
|
|
|
language: c
|
|
|
|
|
2017-04-21 12:28:36 +00:00
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
- gcc
|
|
|
|
|
2017-04-21 14:45:15 +00:00
|
|
|
env:
|
2018-01-04 17:18:24 +00:00
|
|
|
- GOAL=stm32 TOOLCHAIN_SHORTVER=7-2017q4 TOOLCHAIN_LONGVER=gcc-arm-none-eabi-7-2017-q4-major
|
2017-04-21 14:45:15 +00:00
|
|
|
- GOAL=unix
|
2017-06-13 17:42:38 +00:00
|
|
|
- GOAL=src
|
2017-04-21 14:45:15 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
- compiler: clang
|
|
|
|
env: GOAL=stm32
|
2017-06-13 17:42:38 +00:00
|
|
|
- compiler: clang
|
|
|
|
env: GOAL=src
|
2017-04-21 14:45:15 +00:00
|
|
|
|
2017-04-01 21:59:47 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- gcc-multilib
|
2017-06-18 22:18:44 +00:00
|
|
|
- libusb-1.0-0-dev
|
|
|
|
- libudev-dev
|
2017-09-25 14:22:47 +00:00
|
|
|
- python3
|
|
|
|
- python3-pip
|
2016-10-03 14:32:58 +00:00
|
|
|
|
2017-09-25 14:45:42 +00:00
|
|
|
before_install:
|
|
|
|
- pip3 install --user --upgrade pip setuptools wheel
|
|
|
|
|
2017-04-06 17:10:40 +00:00
|
|
|
install:
|
2017-09-25 14:45:42 +00:00
|
|
|
- pip3 install --user scons
|
|
|
|
- pip3 install --user flake8
|
|
|
|
- pip3 install --user pytest
|
2017-12-18 20:48:17 +00:00
|
|
|
- pip3 install --user ecdsa mnemonic requests
|
2017-11-04 14:01:44 +00:00
|
|
|
- pip3 install --user click pyblake2
|
|
|
|
- pip3 install --user --no-deps git+https://github.com/trezor/python-trezor@master
|
2017-04-06 17:10:40 +00:00
|
|
|
|
2017-10-04 15:14:32 +00:00
|
|
|
before_script:
|
2018-01-04 17:18:24 +00:00
|
|
|
- test "$GOAL" != "stm32" || wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/$TOOLCHAIN_SHORTVER/$TOOLCHAIN_LONGVER-linux.tar.bz2
|
|
|
|
- test "$GOAL" != "stm32" || tar xfj $TOOLCHAIN_LONGVER-linux.tar.bz2
|
|
|
|
- test "$GOAL" != "stm32" || export PATH=$PWD/$TOOLCHAIN_LONGVER/bin:$PATH
|
2017-10-04 15:14:32 +00:00
|
|
|
|
2016-10-05 10:50:11 +00:00
|
|
|
script:
|
2017-04-28 13:39:22 +00:00
|
|
|
- test "$GOAL" != "stm32" || make vendorheader
|
|
|
|
- test "$GOAL" != "stm32" || make build_cross
|
|
|
|
- test "$GOAL" != "stm32" || make build_boardloader
|
|
|
|
- test "$GOAL" != "stm32" || make build_bootloader
|
|
|
|
- test "$GOAL" != "stm32" || make build_firmware
|
|
|
|
- test "$GOAL" != "stm32" || make sizecheck
|
2017-04-21 14:45:15 +00:00
|
|
|
|
2017-08-07 10:31:42 +00:00
|
|
|
- test "$GOAL" != "unix" || make build_unix_noui
|
2017-04-21 14:45:15 +00:00
|
|
|
- test "$GOAL" != "unix" || make test
|
2017-10-30 17:52:10 +00:00
|
|
|
- test "$GOAL" != "unix" || make test_emu
|
2017-06-13 17:42:38 +00:00
|
|
|
|
2017-10-03 10:29:38 +00:00
|
|
|
# - test "$GOAL" != "src" || make style
|
2016-10-06 12:29:09 +00:00
|
|
|
|
|
|
|
notifications:
|
2016-10-06 17:15:19 +00:00
|
|
|
webhooks:
|
|
|
|
urls:
|
2017-06-12 12:40:31 +00:00
|
|
|
- http://ci-bot.satoshilabs.com:5000/travis
|
2016-10-06 12:29:09 +00:00
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
on_start: always
|