From f17f5989c94df6081ef262e3faa11558ae9dad73 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 28 Aug 2019 19:51:52 +0000 Subject: [PATCH] Fixup ci errors. Clippy on beta channel is broken Clippy on beta is broken and reports like: ``` error: cannot find macro `pre_install_msg_template!` in this scope --> src/cli/self_update.rs:98:9 | 98 | pre_install_msg_template!( | ^^^^^^^^^^^^^^^^^^^^^^^^ error: cannot find macro `pre_install_msg_template!` in this scope --> src/cli/self_update.rs:109:9 | 109 | pre_install_msg_template!( | ^^^^^^^^^^^^^^^^^^^^^^^^ error: cannot find macro `pre_install_msg_template!` in this scope --> src/cli/self_update.rs:118:9 | 118 | pre_install_msg_template!( | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused macro definition --> src/cli/self_update.rs:62:1 | 62 | / macro_rules! pre_install_msg_template { 63 | | ($platform_msg: expr) => { 64 | | concat!( 65 | | r" ... | 93 | | }; 94 | | } | |_^ | = note: `#[warn(unused_macros)]` on by default ``` This does not happens on neither stable nor nightly channel. Signed-off-by: Arthur Gautier --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f61203c279..66873704ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -77,7 +77,7 @@ matrix: language: minimal install: - | - sh ./rustup-init.sh --default-toolchain=beta -y; + sh ./rustup-init.sh --default-toolchain=nightly -y; . "$HOME"/.cargo/env; rustup component add clippy; script: