mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-12 10:08:09 +00:00
Increase lock wait timeout for qemu_user setup (#3114)
This commit is contained in:
@ -982,7 +982,7 @@ class Libfuzzer(Command):
|
|||||||
handle.write(
|
handle.write(
|
||||||
"#!/bin/bash\n"
|
"#!/bin/bash\n"
|
||||||
"set -ex\n"
|
"set -ex\n"
|
||||||
"sudo apt-get install -y qemu-user g++-aarch64-linux-gnu libasan5-arm64-cross\n"
|
"sudo apt-get -o DPkg::Lock::Timeout=600 install -y qemu-user g++-aarch64-linux-gnu libasan5-arm64-cross\n"
|
||||||
'cd $(dirname "$(readlink -f "$0")")\n'
|
'cd $(dirname "$(readlink -f "$0")")\n'
|
||||||
"mkdir -p sysroot\n"
|
"mkdir -p sysroot\n"
|
||||||
"tar -C sysroot -zxvf %s\n" % sysroot_filename
|
"tar -C sysroot -zxvf %s\n" % sysroot_filename
|
||||||
|
Reference in New Issue
Block a user