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

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ci/script.sh')
-rwxr-xr-xci/script.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/ci/script.sh b/ci/script.sh
deleted file mode 100755
index fa95d02..0000000
--- a/ci/script.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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
-
-if [ "$TRAVIS_RUST_VERSION" = nightly ]; then
- cargo +nightly generate-lockfile -Z minimal-versions
- cargo build --verbose
- cargo test --verbose
-fi