-
Notifications
You must be signed in to change notification settings - Fork 276
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 CI #576
Fix CI #576
Conversation
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.
ACK f67e8c5
Can you also change the Probably we should just remove that line, it seems like it's going to cause more breakage than it saves. |
Whats It looks like our new github action toolchain installer is configurable so we should be able to get this idea working. What do you think? |
@tcharding the current CI failure has the line This is rustfmt that has a fixed version, not clippy. You are correct about clippy. |
Woops I should have clicked on the CI fail, my bad. Staring at that fail all week in every PR and already I've developed a bad habit - happens so fast. |
Currently CI is broken because we use the latest version of `rustfmt` and `clippy` in CI. We can resolve the `rustfmt` issue permanently by removing the `required_version` config option. We also need to fix the latest clippy warnings. Done as a single patch so that all patches pass CI.
f67e8c5
to
d118415
Compare
Force pushed with the |
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.
ACK d118415
Heh, I guess I could've waited to see if CI was actually fixed...oops. |
Huh, it didn't fix it? |
I think it did, I just don't know how to tell. |
I rebased this one to check it: #561 |
Real time chat via github - I guess I should really set up IRC so we can chat at times like this. |
Currently CI is broken because we use the latest version of
rustfmt
andclippy
in CI. We can resolve therustfmt
issue permanently by removing therequired_version
config option. We also need to fix the latest clippy warnings.Done as a single patch so that all patches pass CI.