grin/.travis.yml
AntiochP 677d0a3a95 keychain crate (no more secretkeys in core) (#146)
* introduce grin_keychain, encapsulate derivation of secret_keys
* core compiles against keychain, tests don't run yet
* core tests are now passing against keychain
* wip - getting wallet working with keychain
* add util and keychain to travis test matrix
* basic test around key derivation
2017-10-03 00:02:31 +00:00

32 lines
514 B
YAML

language: rust
cache: cargo
dist: trusty
sudo: true
rust:
- stable
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- cmake
env:
global:
- RUST_BACKTRACE="1"
matrix:
- TEST_DIR=core
- TEST_DIR=store
- TEST_DIR=chain
- TEST_DIR=p2p
- TEST_DIR=api
- TEST_DIR=pool
- TEST_DIR=pow
- TEST_DIR=wallet
- TEST_DIR=util
- TEST_DIR=keychain
- RUST_TEST_THREADS=1 TEST_DIR=grin
script: cd $TEST_DIR && cargo test --verbose