rust-bitcoin/.travis.yml

47 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2014-08-28 10:09:51 -07:00
language: rust
2019-08-18 09:26:52 -07:00
cache: cargo
2019-07-26 12:23:02 -07:00
addons:
apt:
update: true
packages:
- binutils-dev
- libunwind8-dev
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- libiberty-dev
2018-03-20 09:28:18 -07:00
matrix:
include:
- rust: stable
2019-08-18 09:26:52 -07:00
env: DO_FUZZ=true DO_COV=true AS_DEPENDENCY=true
- rust: beta
2019-08-18 09:26:52 -07:00
env: AS_DEPENDENCY=true
- rust: nightly
2019-08-18 09:26:52 -07:00
env: DO_BENCH=true AS_DEPENDENCY=true
- rust: 1.22.0
2019-08-18 09:26:52 -07:00
env: AS_DEPENDENCY=true
2018-03-20 09:28:18 -07:00
script:
- ./contrib/test.sh
2019-07-26 12:23:02 -07:00
after_success: |
if [ "$DO_COV" = true ]; then
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/bitcoin-*; do [ -x "${file}" ] || continue; mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"; fi