-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[Roadmap] Turn cargo dev
into Clippys ./x.py
#5394
Comments
Stop updating the lint counter with every new lint r? @Manishearth This PR does two things: 1. Clean up the clippy_dev module a bit (first 3 commits; cc #5394 ) 2. Make the counter in the README count in steps of 50 lints. Also use a `lazy_static` `Vec` for the lint list, so no counter is required there anymore. changelog: none
`cargo dev` has been the replacement for a while, so I think we can remove it now. cc rust-lang#5394
Remove util/dev script `cargo dev` has been the replacement for a while, so I think we can remove it now. cc #5394 changelog: none
`cargo dev` has been the replacement for a while, so I think we can remove it now. cc rust-lang#5394
I'm going to work on adding the |
This replaces the `update-all-references` scripts with a single cargo dev bless command. cc rust-lang#5394
This replaces the `update-all-references` scripts with a single cargo dev bless command. cc rust-lang#5394
Rewrite update-all-references bash scripts in Rust This replaces the `update-all-references` scripts with a single cargo dev bless command. It should behave mostly the same as the bash scripts. The major difference is, that it can be called from the project root and will always update the files in all of the test suites. cc #5394 changelog: none
cargo dev
into Clippys ./x.py
cargo dev
into Clippys ./x.py
@rustbot claim |
@xFrednet Assuming, you want to work on the Rustc's The custom fork that Clippy is using, currently doesn't have a Two months later, I think that was a bad choice on my end. It would have been Considering all that, I think we would be better off throwing away our custom bless My proposal would be:
cc @flip1995 for the general plan |
I've worked with The first step sounds pretty straight forward. I'm happy to help if you need any support. The second part is definitely the interesting part. This step will probably also depend on the Is there still some area that needs refinement when it comes to your proposal? It seems like you've already started on the implementation.
Thank you very much for the summary @phansch. It seemed a bit frightening at the beginning, but it's very clear, and gave me good overview! :) |
The only thing I can think of is a feature like #6547. I don't think that currently exists in any of the compiletest variants. This would first have to be added to Rustc's compiletest. Once that's merged, it could be copied over to Additionally, while we are waiting for Manishearth/compiletest-rs#232 and Manishearth/compiletest-rs#231 to be merged, I think it would be possible to work on a Clippy PR already that uses the new
|
Hey @phansch congratulations on having the You mentioned two tasks in your previous comment
Have you started to work on one of these? I'm not sure if we want to wait on the switch to the new bless for a feature like #6547. I would look into implementing #6547 into the Rustc's compiletest if you haven't started already and if you think that it's worth to wait until it has also reached into laumann/compiletest-rs. What is your opinion on it? 🙃 |
@xFrednet I haven't started any new work here, yet. To me it seems better to start with adding #6547 to Rustc's compiletest first. Do you already have an idea how to implement it? I just know that the code would have to go somewhere here but I don't know on which condition it should skip writing the output file. |
Hmm, this definitely makes it more complicated. I expected that it is only used by one binary. My initial idea after your comment was to keep track of which test has been run in the last execution and only update those files. However, that idea seems pretty limiting on second thought. Checking the timestamps on the binaries seems like a simple solution. But I'm not sure how generalizable it would be. We could think of adding a tag to the file that states the used binary and the binary compilation timestamps. The Another idea I had was to add some kind of cli interface as it's likely that > /update-references.sh --bless
Which tests do you want to update?
| No | Test | Timestamp |
| 0 | Abord | |
| 1 | test/ui/atomic_ordering_int | 2021-02-13 18:04 |
| 2 | test/ui/bind_instead_of_map_multipart | 2021-02-13 18:02 |
| 3 | test/ui/needless_doc_main | 2021-02-13 18:01 |
| 4 | test/ui/neg_multiply | 2021-02-12 13:17 |
| 5 | test/ui/never_loop | 2021-02-12 13:01 | This could also include some kind of |
Looking a bit more into this, I think there's still an easy way: It looks like compiletest has a The CLI interface looks nice, but I think it's something that would require an MCP first because it would potentially change the workflow for many Rust contributors. |
Upgrade compiletest-rs to 0.6 and tester to 0.9 These updates allow us to specify multiple testnames for `TESTNAME` by providing a comma separated list of testnames. The new version of compiletest-rs also includes `bless` support, but is not enabled with this PR. cc #5394 changelog: none
Rusts cargo dev update_lints
cargo dev fmt And optionally also |
Added `cargo dev setup git-hook` and updated `cargo dev setup intellij` including a `remove` command This PR enables our dev tool to install a git hook that formats the code before each commit and also runs `update_lints` to make sure that everything is registered correctly. The script is located at `util/etc/pre-commit.sh`. I found it reasonable to locate it in the `util` folder and decided to add a `etc` in correlation to the main rust repo and to bring a bit of structure into it. * The hook can be installed via: `cargo dev setup git-hook` * And removed via: `cargo dev remove git-hook` cc: #5394 The refactoring of `src/ide_setup.rs` to `src/setup/intellij.rs` is an extra commit to simplify the review. --- Changes: * Added `cargo dev setup git-hook` for formatting before every commit * Added `cargo dev remove git-hook` to remove the hook again * Added `cargo dev remove intellij` to remove rustc source path dependencies * Changed `cargo dev ide_setup` to `cargo dev setup intellij` changelog: none This is only an internal change and therefore not worth an entry in the general change log. --- Tested on: * [x] Linux (by `@xFrednet)` * [ ] Windows (All used commands run inside the git bash, so it's very likely to work as well `@xFrednet)` * [ ] macOS
Added `cargo dev setup vscode-tasks` for simplicity This PR adds a setup command to `clippy dev` that installs tasks into the Clippy vscode workspace. These might be useful as they be used via shortcuts and are accessible over the GUI. The available tasks are: * `cargo check` (standard Linux shortcut `[ctrl] + [shift] + b`) * `cargo dev fmt` * `cargo uitest` (with a comment how to add the `TESTNAME` environment value) * `cargo test` * `cargo dev bless` --- changelog: none only internal changes again. cc #5394 r? `@flip1995` This should be pretty much the same as the other `cargo dev setup` commands. Would you mind reviewing this? 🙃
Add `cargo dev dogfood` changelog: Add `cargo dev dogfood` Part of #5394
There's already
cargo dev
which makes Clippy development easier and morepleasant. This can still be expanded, so that it covers more areas of the
development process.
Steps to completion:
bless
execute UI-tests and update reference files(outdated)init
includesetup-toolchain.sh
inclippy_dev
pr
(?) Run everything (fmt, update_lints, ...?), so that the changes probably pass CIdeprecate
to deprecate a Clippy lint. This is especially useful if people want to uplift Clippy lints.cargo dev
inrust-lang/rust
so that commands are also usable therecargo dev
commands before committing (Addedcargo dev setup git-hook
and updatedcargo dev setup intellij
including aremove
command #7361)cargo dev rename_lint
(See issuecargo dev rename_lint
#7799)cargo dev dogfood --fix
These are some ideas, that I had, maybe we can even further expand the
clippy_dev
tool.The text was updated successfully, but these errors were encountered: