1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00
trezor-firmware/.travis.yml

38 lines
633 B
YAML
Raw Normal View History

2017-05-04 01:02:51 +00:00
sudo: false
2017-04-01 22:01:07 +00:00
dist: trusty
2015-07-29 17:52:42 +00:00
language: c
2017-04-20 18:45:53 +00:00
compiler:
- clang
- gcc
addons:
apt:
packages:
- check
2017-04-01 22:01:07 +00:00
- cmake
- cmake-data
2015-07-31 08:09:15 +00:00
- libssl-dev
- python-pip
2017-06-03 14:34:56 +00:00
- valgrind
install:
2016-10-15 12:26:51 +00:00
- pip install --user pytest ecdsa curve25519-donna
2015-07-29 17:52:42 +00:00
script:
2015-07-31 08:09:15 +00:00
- make
2017-08-14 12:25:35 +00:00
- ./aes/aestst
- ./test_check
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./test_check
- ./test_openssl 1000
- ITERS=10 py.test
2017-04-11 15:12:30 +00:00
- mkdir _build && cd _build && cmake .. && make && cd ..
2017-05-04 01:02:51 +00:00
2017-04-11 15:16:30 +00:00
notifications:
webhooks:
urls:
2017-06-12 12:40:57 +00:00
- http://ci-bot.satoshilabs.com:5000/travis
2017-04-11 15:16:30 +00:00
on_success: always
on_failure: always
on_start: always