Fix pkill invocation
This commit is contained in:
parent
e25390724e
commit
2eb79c0a3a
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ def run_with_retry(cmd: str, timeout: float | None = 20 * 60, retry_cmd: str = '
|
||||||
time.sleep(60)
|
time.sleep(60)
|
||||||
call(cmd, echo=True, timeout=timeout)
|
call(cmd, echo=True, timeout=timeout)
|
||||||
|
|
||||||
for x, retry_cmd in {'64': '', 'arm64': 'pkill -9 qemu-aarch64-static'}.items():
|
for x, retry_cmd in {'64': '', 'arm64': 'pkill -9 -f -e qemu-aarch64-static'}.items():
|
||||||
prefix = f'python ../bypy linux --arch {x} '
|
prefix = f'python ../bypy linux --arch {x} '
|
||||||
run_with_retry(prefix + f'program --non-interactive --extra-program-data "{vcs_rev}"', retry_cmd=retry_cmd)
|
run_with_retry(prefix + f'program --non-interactive --extra-program-data "{vcs_rev}"', retry_cmd=retry_cmd)
|
||||||
run_with_retry(
|
run_with_retry(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue