1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 03:19:05 +00:00
trezor-firmware/.travis.yml

38 lines
724 B
YAML
Raw Normal View History

2017-11-14 01:18:28 +00:00
language: python
# Runs jobs on container based infrastructure
sudo: false
# Saves pip downloads/wheels between builds
cache:
directories:
- $HOME/.cache/pip
2018-10-18 13:00:09 +00:00
addons:
apt:
packages:
- graphviz
2017-11-14 01:18:28 +00:00
python:
2018-08-23 16:32:12 +00:00
- "3.6"
2017-11-14 01:18:28 +00:00
2018-04-28 20:00:06 +00:00
install:
- pip install demjson graphviz
2018-07-30 14:01:23 +00:00
- pip install -r tools/requirements.txt
2018-04-28 20:00:06 +00:00
2017-11-14 01:18:28 +00:00
script:
2018-06-21 14:39:04 +00:00
- jsonlint defs/*.json
2018-06-25 10:17:52 +00:00
- jsonlint defs/*/*.json
2018-08-23 16:32:12 +00:00
- python tools/cointool.py check
- python tools/support.py check --ignore-missing
- cd protob && python check.py
- python protob/graph.py protob/*.proto
2017-11-14 01:18:28 +00:00
notifications:
webhooks:
urls:
- http://ci-bot.satoshilabs.com:5000/travis
on_success: always
on_failure: always
on_start: always