1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/.travis.yml

70 lines
2.0 KiB
YAML
Raw Normal View History

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 14:45:15 +00:00
env:
global:
- PROTOBUF_VERSION=3.4.0
2018-09-30 14:45:39 +00:00
- TOOLCHAIN_SHORTVER=7-2018q2
- TOOLCHAIN_LONGVER=gcc-arm-none-eabi-7-2018-q2-update
matrix:
2018-09-30 14:45:39 +00:00
- GOAL=stm32
- GOAL=unix
- GOAL=src
2017-04-21 14:45:15 +00:00
matrix:
2018-09-30 14:44:23 +00:00
include:
2017-04-21 14:45:15 +00:00
- compiler: clang
2018-09-30 14:44:23 +00:00
env: GOAL=unix
2017-04-21 14:45:15 +00:00
2017-04-01 21:59:47 +00:00
addons:
apt:
sources:
- deadsnakes
2017-04-01 21:59:47 +00:00
packages:
- build-essential
- gcc-multilib
2017-06-18 22:18:44 +00:00
- libusb-1.0-0-dev
- libudev-dev
- python3.6
- python3.6-dev
- python3.6-venv
2016-10-03 14:32:58 +00:00
2017-09-25 14:45:42 +00:00
before_install:
- python3.6 -m ensurepip --user
- python3.6 -m pip install --user pipenv
2017-09-25 14:45:42 +00:00
2017-04-06 17:10:40 +00:00
install:
- curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"
- unzip "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" -d protoc
- export PATH="$(pwd)/protoc/bin:$PATH"
- pipenv install
2017-04-06 17:10:40 +00:00
before_script:
- 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
2016-10-05 10:50:11 +00:00
script:
2018-07-03 14:11:57 +00:00
- test "$GOAL" != "src" || pipenv run make style
2018-08-27 13:16:31 +00:00
- test "$GOAL" != "src" || pipenv run make templates_check
2018-07-03 14:11:57 +00:00
- test "$GOAL" != "stm32" || pipenv run make build_cross
- test "$GOAL" != "stm32" || pipenv run make build_boardloader
- test "$GOAL" != "stm32" || pipenv run make build_bootloader
- test "$GOAL" != "stm32" || pipenv run make build_prodtest
- test "$GOAL" != "stm32" || pipenv run make build_firmware
- test "$GOAL" != "stm32" || test "$TREZOR_MODEL" = "1" || pipenv run make sizecheck
- test "$GOAL" != "unix" || pipenv run make build_unix_noui
- test "$GOAL" != "unix" || pipenv run make test
- test "$GOAL" != "unix" || test "$TREZOR_MODEL" = "1" || pipenv run make test_emu
2017-06-13 17:42:38 +00:00
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