ci(fuzz): fix gitlab fuzz job that has started to fail on main due to pulling in packages above MSRV - #2185
Conversation
…n packages above MSRV
|
🎯 Code Coverage (details) 🔗 Commit SHA: 9b16b84 | Docs | Datadog PR Page | Give us feedback! |
|
/merge |
|
View all feedbacks in Devflow UI.
This pull request is not mergeable according to GitHub. Common reasons include pending required checks, missing approvals, or merge conflicts — but it could also be blocked by other repository rules or settings.
The expected merge time in
|
Artifact Size Benchmark Reportaarch64-alpine-linux-musl
aarch64-unknown-linux-gnu
libdatadog-x64-windows
libdatadog-x86-windows
x86_64-alpine-linux-musl
x86_64-unknown-linux-gnu
|
… pulling in packages above MSRV (#2185) # What does this PR do? The fuzz job on gitlab has started to [fail on main](https://gitlab.ddbuild.io/DataDog/apm-reliability/libdatadog/-/jobs/1820649675 ). The job does rustup default nightly-2026-02-08 (rustc 1.95) at line 26, but cargo install then runs inside the repo directory, where rust-toolchain.toml pins channel = "1.87.0". A rust-toolchain.toml directory override beats the rustup default, so cargo-fuzz gets compiled with 1.87.0. # Motivation What inspired you to submit this pull request? # Additional Notes Anything else we should know when reviewing? # How to test the change? [Ran the fuzz job manually on my PR](https://gitlab.ddbuild.io/DataDog/apm-reliability/libdatadog/-/jobs/1820747534) Co-authored-by: edmund.kump <edmund.kump@datadoghq.com> Signed-off-by: Taegyun Kim <taegyun.kim@datadoghq.com>
What does this PR do?
The fuzz job on gitlab has started to fail on main.
The job does rustup default nightly-2026-02-08 (rustc 1.95) at line 26, but cargo install then runs inside the repo directory, where rust-toolchain.toml pins channel = "1.87.0". A rust-toolchain.toml directory override beats the rustup default, so cargo-fuzz gets compiled with 1.87.0.
Motivation
What inspired you to submit this pull request?
Additional Notes
Anything else we should know when reviewing?
How to test the change?
Ran the fuzz job manually on my PR