You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/.travis.yml

52 lines
943 B

sudo: false
dist: trusty
language: c
compiler:
- clang
- gcc
addons:
apt:
packages:
- check
- cmake
- cmake-data
- libssl-dev
- python-pip
- valgrind
install:
- pip install --user pytest ecdsa curve25519-donna
script:
- make
- ./test_check
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./test_check
- ./test_openssl 1000
- ITERS=10 py.test
- mkdir _build && cd _build && cmake .. && make && cd ..
matrix:
include:
- env: BUILD=emscripten
script:
- cd emscripten && rm trezor-crypto.js && make docker-build && make test-correctness && cd ..
services:
- docker
sudo: required
install: true
compiler: true
addons:
apt:
packages:
- nodejs
notifications:
webhooks:
urls:
- http://ci-bot.satoshilabs.com:5000/travis
on_success: always
on_failure: always
on_start: always