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

52 lines
1.3 KiB
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
env:
global:
PROTOBUF_VERSION=3.4.0
2015-12-21 19:42:33 +00:00
python:
- "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>=9.0" wheel # pip 9.0 understands `python_requires` constraints
- pip install "setuptools>=38" # setuptools >= 38 are capable of using prebuilt wheels
2017-06-13 13:43:14 +00:00
- pip install tox-travis
- pip install -r requirements-dev.txt
# protobuf-related dependencies
- curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"
- unzip "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" -d protoc
- export PATH="$(pwd)/protoc/bin:$PATH"
2015-12-21 19:42:33 +00:00
before_script:
- ./trigger-travis.sh
2015-12-21 19:42:33 +00:00
script:
- python setup.py install
- if [ $TRAVIS_PYTHON_VERSION == 3.6 ]; then make stylecheck; fi
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