Welcome to mirror list, hosted at ThFree Co, Russian Federation.

script.sh « ci - github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e8c467f42c03a118d234adcfe7680f1dc90696b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -ex

MSRV="1.23.0"

cargo build --verbose

# Give up testing on MSRV since our dev-dependencies no longer support it.
if [ "$TRAVIS_RUST_VERSION" = "$MSRV" ]; then
    exit
fi

cargo build --verbose --all
cargo doc --verbose
cargo test --verbose