mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 16:08:17 +00:00
24 lines
379 B
YAML
24 lines
379 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"
|
||
|
|
||
|
script:
|
||
|
- python coins-check.py
|
||
|
|
||
|
notifications:
|
||
|
webhooks:
|
||
|
urls:
|
||
|
- http://ci-bot.satoshilabs.com:5000/travis
|
||
|
on_success: always
|
||
|
on_failure: always
|
||
|
on_start: always
|