-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix travis #63
Fix travis #63
Conversation
Currently we only test on nightly and *ignore* the result! Since it should build witout problem on 1.15.1 onwards, we enable these.
Hm, somehow clippy still doesn't work. Btw, alternatively there's now a "cargo clippy" subcommand available, instead of conditional compilation. |
I think it's just that it's currently broken for the latest nightly... Maybe we should use a star dependency? Or at least "^0.0" so we always have the latest clippy with the latest nightly which should work. See https://github.com/Manishearth/rust-clippy#usage |
Agree, let's use " |
Clippy only guarantees, that the latest clippy version will work with the latest nightly build of Rust. So we want to always use the latest version.
Regarding the clippy failure: See https://github.com/Manishearth/rust-clippy/pull/1833 and https://github.com/Manishearth/rust-clippy/issues/1834 |
@dbrgn OK like that? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also disable the IRC notifications?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never mind, wrong crate.
Currently our travis pipeline is more or less useless, since we only build on nighlty which fails, but we ignore the result.