Skip to content

Commit

Permalink
Merge pull request #8 from wickedchicken/fix_builds_ugh
Browse files Browse the repository at this point in the history
Temporarily disable clippy for most targets
  • Loading branch information
wickedchicken authored Aug 7, 2019
2 parents a860c36 + e540083 commit 2d28062
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ main() {
fi
cargo fmt --all -- --check
cross build --target $TARGET
cross clippy -- --target $TARGET -D warnings
# Re-enable for all targets once https://github.com/rust-lang/rust/issues/62558 is
# fixed.
if [ "$TARGET" == "x86_64-unknown-linux-gnu" ]; then
cross clippy -- --target $TARGET -D warnings
fi
cross build --target $TARGET --release

if [ ! -z $DISABLE_TESTS ]; then
Expand Down

0 comments on commit 2d28062

Please sign in to comment.