CI: use /tmp for ecosystem clone; fix rustfmt violations
All checks were successful
Mirror to GitHub / mirror (push) Successful in 2s

This commit is contained in:
Breadway 2026-06-19 08:38:40 +08:00
parent d177cc8d82
commit 8aceab7857
4 changed files with 20 additions and 13 deletions

View file

@ -319,7 +319,15 @@ pub fn connect_verbose(iface: &str, net: &NetworkDef, wait: u32, dns: &str) -> R
}
let o = run(
"nmcli",
&["--wait", &wait_s, "connection", "up", &profile, "ifname", iface],
&[
"--wait",
&wait_s,
"connection",
"up",
&profile,
"ifname",
iface,
],
Duration::from_secs(wait as u64 + 15),
);
if !o.success {