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

30 lines
555 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
python:
- "3.5"
2018-04-28 20:00:06 +00:00
install:
- pip install ed25519 Pillow demjson
2018-04-30 17:51:55 +00:00
- pip install --no-deps trezor
2018-04-28 20:00:06 +00:00
2017-11-14 01:18:28 +00:00
script:
- jsonlint coins_details.json
- jsonlint defs/support.json
2018-04-28 18:14:46 +00:00
- cd defs/coins/tools && python build_coins.py
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