-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Update clippy and miri submodule #47881
Conversation
Oops. Yes this will fail 🤔 Perhaps temporarily apply this diff: diff --git a/src/ci/docker/x86_64-gnu-tools/checktools.sh b/src/ci/docker/x86_64-gnu-tools/checktools.sh
index b9268fe62e..85f57f9648 100755
--- a/src/ci/docker/x86_64-gnu-tools/checktools.sh
+++ b/src/ci/docker/x86_64-gnu-tools/checktools.sh
@@ -32,7 +32,8 @@ cat "$TOOLSTATE_FILE"
# If this PR is intended to update one of these tools, do not let the build pass
# when they do not test-pass.
-for TOOL in rls rustfmt miri clippy; do
+# FIXME: Skipping miri check until #46882 is merged
+for TOOL in rls rustfmt clippy; do
echo "Verifying status of $TOOL..."
if echo "$CHANGED_FILES" | grep -q "^M[[:blank:]]src/tools/$TOOL$"; then
echo "This PR updated 'src/tools/$TOOL', verifying if status is 'test-pass'..." |
r=me when it's fixed |
src/bootstrap/tool.rs
Outdated
@@ -469,7 +469,8 @@ tool_extended!((self, builder), | |||
target: builder.build.build, | |||
}); | |||
}; | |||
Miri, miri, "src/tools/miri", "miri", {}; | |||
// FIXME(oli-obk) reenable after #46882 | |||
//Miri, miri, "src/tools/miri", "miri", {}; |
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.
This line shouldn't need to be commented out.
travis likes it now |
@bors r=Manishearth p=3 |
📌 Commit 0d2639c has been approved by |
⌛ Testing commit 0d2639c891bd8a72961e90e5cdf8268ee7ebf2a6 with merge e8f71315df58978c985f4ee78158d7f8b3f7c441... |
💔 Test failed - status-appveyor |
Hmmm... clippy's appveyor works, rustcs fails with
I guess there's no |
I am dumping the files in |
@bors r=Manishearth |
📌 Commit 7d45eef has been approved by |
Update clippy and miri submodule r? @Manishearth cc @kennytm I needed to touch the miri submodule's Cargo.toml to make sure that clippy gets the newest compiletest_rs. This will not fix miri, but since I touched the miri submodule, will this PR fail? miri is unfixable until #46882 is merged
💔 Test failed - status-travis |
Legit.
|
@oli-obk ping from triage! |
@bors r=Manishearth |
📌 Commit 70717f2 has been approved by |
Update clippy and miri submodule r? @Manishearth cc @kennytm I needed to touch the miri submodule's Cargo.toml to make sure that clippy gets the newest compiletest_rs. This will not fix miri, but since I touched the miri submodule, will this PR fail? miri is unfixable until #46882 is merged
☀️ Test successful - status-appveyor, status-travis |
Tested on commit rust-lang/rust@6c04c41. 🎉 clippy-driver on windows: build-fail → test-pass. 🎉 clippy-driver on linux: build-fail → test-pass.
We are green 🎉 https://rust-lang-nursery.github.io/rust-toolstate/ |
r? @Manishearth
cc @kennytm I needed to touch the miri submodule's Cargo.toml to make sure that clippy gets the newest compiletest_rs. This will not fix miri, but since I touched the miri submodule, will this PR fail?
miri is unfixable until #46882 is merged