Skip to content

Commit 678f3ff

Browse files
committed
feat: inherit jobserver from env for all kinds of runner
External subcommands are already able to inherit the jobserver from env since #10511. However, users reported that they've expected `cargo run` to behave the same as external subcommands. A popular example "cargo-xtask" pattern is used as scripting to run arbitrary tasks. Users may want to invoke `cargo run` from Make and expect some parallelism. This PR provides such an ability to the general `target.<...>.runner`, which affects `cargo test`, `cargo bench`, and `cargo run`. Note that this PR doesn't create any jobserver client if there is no existing jobserver from the environment. Nor `-j`/`--jobs` would create a new client. Reasons for this decision: * There might be crates don't want the jobserver to pollute their file descriptors, although they might be rare * Creating a jobsever driver with the new FIFO named pipe style is not yet supported as of `[email protected]`. Once we can create a named pipe-based jobserver, it will be less risky and inheritance by default can be implemented.
1 parent ac1dc0b commit 678f3ff

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/cargo/core/compiler/compilation.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,13 @@ impl<'cfg> Compilation<'cfg> {
257257
} else {
258258
ProcessBuilder::new(cmd)
259259
};
260-
self.fill_env(builder, pkg, script_meta, kind, false)
260+
let mut builder = self.fill_env(builder, pkg, script_meta, kind, false)?;
261+
262+
if let Some(client) = self.config.jobserver_from_env() {
263+
builder.inherit_jobserver(client);
264+
}
265+
266+
Ok(builder)
261267
}
262268

263269
/// Prepares a new process with an appropriate environment to run against

tests/testsuite/jobserver.rs

-8
Original file line numberDiff line numberDiff line change
@@ -192,33 +192,25 @@ test-runner:
192192
.env("CARGO", cargo_exe())
193193
.arg("run")
194194
.arg("-j2")
195-
.with_status(2)
196-
.with_stderr_contains("[..]no jobserver from env[..]")
197195
.run();
198196
p.process(make)
199197
.env("PATH", path)
200198
.env("CARGO", cargo_exe())
201199
.arg("run-runner")
202200
.arg("-j2")
203-
.with_status(2)
204201
.with_stderr_contains("[..]this is a runner[..]")
205-
.with_stderr_contains("[..]no jobserver from env[..]")
206202
.run();
207203
p.process(make)
208204
.env("CARGO", cargo_exe())
209205
.arg("test")
210206
.arg("-j2")
211-
.with_status(2)
212-
.with_stdout_contains("[..]no jobserver from env[..]")
213207
.run();
214208
p.process(make)
215209
.env("PATH", path)
216210
.env("CARGO", cargo_exe())
217211
.arg("test-runner")
218212
.arg("-j2")
219-
.with_status(2)
220213
.with_stderr_contains("[..]this is a runner[..]")
221-
.with_stdout_contains("[..]no jobserver from env[..]")
222214
.run();
223215

224216
// but not from `-j` flag

0 commit comments

Comments
 (0)