mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
6aac03d2d8
This allows TrezorCrypto to be linked with by other CMake projects
26 lines
441 B
YAML
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
|