mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 12:08:59 +00:00
30 lines
534 B
YAML
30 lines
534 B
YAML
language: python
|
|
|
|
# Runs jobs on container based infrastructure
|
|
sudo: false
|
|
|
|
# Saves pip downloads/wheels between builds
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
install:
|
|
- pip install ed25519 Pillow demjson
|
|
- pip install --no-deps trezor
|
|
|
|
script:
|
|
- jsonlint defs/*.json
|
|
- jsonlint defs/*/*.json
|
|
- python tools/build_coins.py --defs
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- http://ci-bot.satoshilabs.com:5000/travis
|
|
on_success: always
|
|
on_failure: always
|
|
on_start: always
|