-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Use nextest to run Miri in CI #9629
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,6 +55,9 @@ jobs: | |
| rustup toolchain install nightly --component miri | ||
| rustup override set nightly | ||
| cargo miri setup | ||
| - name: Set up nextest | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This action scares me security wise (as it runs some bash script) I think it would be better (if not ideal) to install nextest explicitly (
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah absolutely, I'll change it.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Let's do it maybe we can make a separate PR to do so (so we can review the changes in isolation)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SGTM, 3b003ec just installs nextest using cargo install with a locked version, once this merges I'll open up a follow up.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems like this adds 3 minutes to the job https://github.com/apache/arrow-rs/actions/runs/23844918251/job/69509710473?pr=9629
However, we are ahead of where main is |
||
| run: | | ||
| cargo install cargo-nextest --version 0.9.132 --locked | ||
| - name: Run Miri Checks | ||
| env: | ||
| RUST_BACKTRACE: full | ||
|
|
||

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.
TIL: https://nexte.st/docs/integrations/miri/
Uh oh!
There was an error while loading. Please reload this page.
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.
nextest is probably the most important non built in tool working in rust for my workflow
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.
sqllogictestis mine 😉