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: 9452be07d4c7d10c775b77aac13ce1177c5bf2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -ex

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

if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
  cargo +nightly generate-lockfile -Z minimal-versions
  cargo build --verbose
  cargo test --verbose
fi