limit sby to one thread each since it seems not to respect job count in parallel mode
All checks were successful
/ test (push) Successful in 46m32s
All checks were successful
/ test (push) Successful in 46m32s
This commit is contained in:
parent
42effd1132
commit
cb17913004
|
@ -610,6 +610,7 @@ impl FormalArgs {
|
|||
});
|
||||
std::fs::write(&sby_file, sby_contents)?;
|
||||
let mut cmd = process::Command::new(&self.sby);
|
||||
cmd.arg("-j1"); // sby seems not to respect job count in parallel mode
|
||||
cmd.arg("-f");
|
||||
cmd.arg(sby_file.file_name().unwrap());
|
||||
cmd.args(&self.sby_extra_args);
|
||||
|
|
Loading…
Reference in a new issue