-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Integrate miri into build-manifest #57484
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
r? @Mark-Simulacrum or @kennytm |
src/tools/build-manifest/src/main.rs
Outdated
@@ -297,6 +304,7 @@ impl Builder { | |||
self.llvm_tools_version = self.version("llvm-tools", "x86_64-unknown-linux-gnu"); | |||
// lldb is only built for macOS. | |||
self.lldb_version = self.version("lldb", "x86_64-apple-darwin"); | |||
self.miri_version = self.version("miri", "x86_64-apple-darwin"); |
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.
Hm, this should probably be a Linux triple, not macOS?
self.miri_version = self.version("miri", "x86_64-apple-darwin"); | |
self.miri_version = self.version("miri", "x86_64-unknown-linux-gnu"); |
r=me modulo my comment |
Fixes #57488. |
@dwijnand thanks, I added that to the OP (GH doesn't seem to recognize it as a magic marker otherwise). |
This fixes a mistake where miri was accidentally left out of the build-manifest parsing, meaning that today's nightly generated a manifest with invalid urls!
1fda345
to
dd326f8
Compare
@bors: r=Mark-Simulacru |
📌 Commit dd326f8 has been approved by |
⌛ Testing commit dd326f8 with merge e0f385c5b385b48330e8ba84288989dd699a01de... |
💥 Test timed out |
@bors: retry |
Integrate miri into build-manifest This fixes a mistake where miri was accidentally left out of the build-manifest parsing, meaning that today's nightly generated a manifest with invalid urls! Fixes #57488.
☀️ Test successful - checks-travis, status-appveyor |
This fixes a mistake where miri was accidentally left out of the
build-manifest parsing, meaning that today's nightly generated a
manifest with invalid urls!
Fixes #57488.