-
Notifications
You must be signed in to change notification settings - Fork 51
Conversation
e046235
to
1502bbf
Compare
A better way that doesn't increase the build time is to get rid of the
What you hope to gain from this? Or what will this impact? |
What does the
Apparently they fixed the bug and with that flag clippy should work and still use the cache. Read more about it here: |
It's the cargo builtin linter. clippy is a superset tho, so running either should be enough, In our case clippy preferrably.
Great, we run a reasonably recent nightly so the flag should be supported. |
In that case I'll try to remove |
That seems to work and the build only takes 30s to fail on clippy. |
Glad my initial suggestion worked out. Let me know if you need help addressing the actual clippy complains. |
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.
Would revert the unwrap change, otherwise gud.
🍭 🔁 🌒 🕒
This reverts commit 94e52a6.
As per workaround documented in: rust-lang/rust-clippy#4612
This adds 11m to the build however : (
We should probably try to upgrade to the latest nightly version and try
-Zunstable-options
.Closes #376.