Assertions in update_fee_that_funder_cannot_afford to check consts
[rust-lightning] / .travis.yml
1 language: rust
2 rust:
3   - stable
4   - nightly
5   # 1.22.0 is MSRV for rust-lightning in general:
6   - 1.22.0
7   # 1.34.2 is Debian stable
8   - 1.34.2
9   # 1.39.0 is MSRV for lightning-net-tokio and generates coverage
10   - 1.39.0
11 cache: cargo
12
13 before_install:
14   - sudo apt-get -qq update
15   - sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
16
17 script:
18      # Support lightning-net-tokio only on Rust stable, nightly, and 1.39.0
19      - if [ "$(rustup show | grep default | grep '1.39.0')" != "" ]; then export BUILD_NET_TOKIO=1; fi
20      - if [ "$(rustup show | grep default | grep '1\.')" == "" ]; then export BUILD_NET_TOKIO=1; fi
21      # Build the appropriate workspace(s)
22      - if [ "$BUILD_NET_TOKIO" == "1" ]; then RUSTFLAGS="-C link-dead-code" cargo build --verbose; fi
23      - if [ "$BUILD_NET_TOKIO" != "1" ]; then RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning; fi
24      - rm -f target/debug/lightning-* # Make sure we drop old test binaries
25      # Test the appropriate workspace(s)
26      - if [ "$BUILD_NET_TOKIO" == "1" ]; then RUSTFLAGS="-C link-dead-code" cargo test --verbose; fi
27      - if [ "$BUILD_NET_TOKIO" != "1" ]; then RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning; fi
28      # Run lightning workspace fuzz tests on Rust stable
29      - if [ "$(rustup show | grep default | grep stable)" != "" ]; then cd fuzz && cargo test --verbose && ./ci-fuzz.sh; fi
30      # Run mutagen on nightly with TheBlueMatt's fork which exits with non-0 status
31      # if any mutations resulted in anything except test failures to prevent regressions.
32      - if [ "$(rustup show | grep default | grep nightly)" != "" ]; then
33            rm -rf mutagen && git clone https://github.com/TheBlueMatt/mutagen &&
34            cargo install --force --path mutagen/mutagen-runner &&
35            cd lightning &&
36            ~/.cargo/bin/cargo-mutagen --features mutation_testing; fi
37      # Generate code cov information on Rust 1.39.0
38      - if [ "$(rustup show | grep default | grep 1.39.0)" != "" ]; then
39            wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
40            tar xzf master.tar.gz &&
41            cd kcov-master &&
42            mkdir build &&
43            cd build &&
44            cmake .. &&
45            make &&
46            make install DESTDIR=../../kcov-build &&
47            cd ../.. &&
48            rm -rf kcov-master &&
49            for file in target/debug/lightning-*; 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 &&
50            bash <(curl -s https://codecov.io/bash) &&
51            echo "Uploaded code coverage"; fi