-
Notifications
You must be signed in to change notification settings - Fork 1
/
travis.sh
executable file
·45 lines (38 loc) · 1.03 KB
/
travis.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
channel() {
if [ -n "${TRAVIS}" ]; then
if [ "${TRAVIS_RUST_VERSION}" = "${CHANNEL}" ]; then
pwd
(set -x; cargo "$@")
fi
elif [ -n "${APPVEYOR}" ]; then
if [ "${APPVEYOR_RUST_CHANNEL}" = "${CHANNEL}" ]; then
pwd
(set -x; cargo "$@")
fi
else
pwd
(set -x; cargo "+${CHANNEL}" "$@")
fi
}
if [ -n "${NIGHTLY}" ]; then
if [ -n "${TRAVIS}" ] && ! cargo install rustfmt-nightly --debug --force; then
echo "COULD NOT COMPILE RUSTFMT, IGNORING FMT"
exit
fi
cargo fmt -- --write-mode diff
# cached installation will not work on a later nightly
if [ -n "${TRAVIS}" ] && ! cargo install clippy --debug --force; then
echo "COULD NOT COMPILE CLIPPY, IGNORING CLIPPY TESTS"
exit
fi
cargo clippy
else
for CHANNEL in nightly stable beta; do
channel clean
channel build
channel test
done
fi