1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00
trezor-firmware/.travis.yml
Saleem Rashid 6aac03d2d8 CMakeLists: Allow use as a library (#82)
This allows TrezorCrypto to be linked with by other CMake projects
2016-11-16 22:58:12 +01:00

26 lines
441 B
YAML

sudo: false
language: c
addons:
apt:
sources:
- george-edison55-precise-backports # CMake 3.x
packages:
- check
- cmake # Travis CI comes with CMake 2.8.7, we need CMake 2.8.11
- cmake-data
- libssl-dev
- python-pip
install:
- pip install --user pytest ecdsa curve25519-donna
script:
- make
- ./tests
- ./test-openssl 1000
- ITERS=10 py.test
- mkdir _build && cd _build
- cmake ..
- make