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

40 lines
708 B
YAML
Raw Normal View History

2015-12-21 19:42:33 +00:00
language: python
# Runs jobs on container based infrastructure
sudo: false
# Saves pip downloads/wheels between builds
cache:
directories:
- $HOME/.cache/pip
2016-01-19 21:55:50 +00:00
addons:
apt:
packages:
- libudev-dev
- libusb-1.0-0-dev
2015-12-21 19:42:33 +00:00
python:
- "2.7"
- "3.4"
2016-01-19 21:35:02 +00:00
- "3.5"
2017-04-25 14:50:56 +00:00
- "3.6"
2016-01-19 21:55:50 +00:00
2015-12-21 19:42:33 +00:00
install:
# Optimisation: build requirements as wheels, which get cached by Travis
- pip install "pip>=7.0" wheel
- pip install "setuptools>=19.0"
2017-06-13 13:43:14 +00:00
- pip install tox-travis
2015-12-21 19:42:33 +00:00
script:
- python setup.py install
2017-06-13 13:43:14 +00:00
- tox
2017-06-12 12:38:07 +00:00
notifications:
webhooks:
urls:
- http://ci-bot.satoshilabs.com:5000/travis
on_success: always
on_failure: always
on_start: always