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

58 lines
1.3 KiB
YAML
Raw Normal View History

2017-04-01 21:43:39 +00:00
sudo: false
dist: trusty
2015-08-05 14:38:53 +00:00
language: c
2017-04-01 21:43:39 +00:00
addons:
apt:
sources:
- deadsnakes
2017-04-01 21:43:39 +00:00
packages:
- build-essential
- gcc-arm-none-eabi
- gcc-multilib
- libnewlib-arm-none-eabi
- python3.6
- python3.6-venv
- python3.6-dev
env:
global:
- MAKEFLAGS=-j2
- PYTHON=python3.6
- PROTOBUF_VERSION=3.4.0
matrix:
- DEBUG_LINK=0
- DEBUG_LINK=1
2015-08-05 14:38:53 +00:00
2017-12-17 16:04:02 +00:00
matrix:
include:
2018-09-12 13:43:30 +00:00
- name: "Emulator GCC"
env: EMULATOR=1 HEADLESS=1 DEBUG_LINK=1
compiler: gcc
script: pipenv run ./script/cibuild && pipenv run script/test
- name: "Emulator Clang"
env: EMULATOR=1 HEADLESS=1 DEBUG_LINK=1
compiler: clang
script: pipenv run ./script/cibuild && pipenv run script/test
2017-12-17 16:04:02 +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"
- $PYTHON -m ensurepip --user
- $PYTHON -m pip install --user pipenv
- pipenv install
2015-08-05 14:38:53 +00:00
script:
- pipenv run script/cibuild
- pipenv run make -C bootloader
- pipenv run make -C demo
2016-11-23 10:50:14 +00:00
notifications:
webhooks:
urls:
2017-06-12 12:42:11 +00:00
- http://ci-bot.satoshilabs.com:5000/travis
2016-11-23 10:50:14 +00:00
on_success: always
on_failure: always
on_start: always