grin/.travis.yml
Yeastplume 4c6a193e01
[WIP] Miner removal (#979)
* Beginning to remove in-process miner

* rustfmt

* rustfmt

* rustfmt

* rustfmt

* remove pow crate and put remnants into core

* rustfmt

* fix test compilation in core and chain

* rustfmt

* Updating server tests to use test miner

* rustfmt

* rustfmt

* remove pow from test matrix

* adding basic stratum stats to TUI

* run stratum server at all times, and halt messages while syncing

* fix core tests

* add ability to run internal test miner for cuckoo 16 testing

* modify build instructions
2018-04-24 09:18:24 +01:00

42 lines
777 B
YAML

language: rust
cache:
cargo: true
timeout:
240 # =4 min (default 120). ~6 GB cache up/down from S3 needs time.
before_cache:
- rm -rf target/tmp
dist: trusty
sudo: false
rust:
- stable
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- cmake
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
env:
global:
- RUST_BACKTRACE="1"
- RUST_FLAGS="-C debug-assertions"
matrix:
- RUST_TEST_THREADS=1 TEST_DIR=servers
- TEST_DIR=store
- TEST_DIR=chain
- TEST_DIR=pool
- TEST_DIR=wallet
- TEST_DIR=p2p
- TEST_DIR=api
- TEST_DIR=keychain
- TEST_DIR=core
- TEST_DIR=util
script: cd $TEST_DIR && cargo test --release