1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 23:48:12 +00:00
trezor-firmware/crypto/.travis.yml

39 lines
638 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
2015-07-31 08:09:15 +00:00
- libssl-dev
2018-04-05 12:52:59 +00:00
- python3-pip
2017-06-03 14:34:56 +00:00
- valgrind
2018-04-05 12:52:59 +00:00
env:
global:
- PYTHON=python3
install:
2018-07-16 10:53:55 +00:00
- $PYTHON -m pip install --user pytest ecdsa curve25519-donna pyasn1
2015-07-29 17:52:42 +00:00
script:
2015-07-31 08:09:15 +00:00
- make
2018-04-05 11:26:59 +00:00
- ./tests/aestst
- ./tests/test_check
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./tests/test_check
- ./tests/test_openssl 1000
2018-07-12 13:19:51 +00:00
- ITERS=10 $PYTHON -m pytest tests/
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