2018-10-06 18:23:54 +02:00
|
|
|
# Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
|
2018-05-16 18:55:21 +02:00
|
|
|
set -ex
|
2018-07-28 12:14:35 +02:00
|
|
|
|
|
|
|
echo "Running clippy base tests"
|
|
|
|
|
2018-05-16 09:10:35 +02:00
|
|
|
PATH=$PATH:./node_modules/.bin
|
2018-10-12 07:59:08 +02:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
|
|
|
remark -f *.md > /dev/null
|
|
|
|
fi
|
2018-07-28 12:14:35 +02:00
|
|
|
# build clippy in debug mode and run tests
|
2018-05-16 09:10:35 +02:00
|
|
|
cargo build --features debugging
|
|
|
|
cargo test --features debugging
|
2018-08-29 04:32:20 +02:00
|
|
|
cd clippy_lints && cargo test && cd ..
|
2018-09-07 19:06:02 +02:00
|
|
|
cd rustc_tools_util && cargo test && cd ..
|
2018-11-03 10:58:45 +01:00
|
|
|
cd clippy_dev && cargo test && cd ..
|
2018-11-04 09:41:28 +01:00
|
|
|
|
|
|
|
# Perform various checks for lint registration
|
|
|
|
./util/dev update_lints --check
|
2018-11-27 21:11:05 +01:00
|
|
|
cargo +nightly fmt --all -- --check
|