mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
scripts: Extract downloading hypervisor-fw to a function
This will reduce the number of locations that it will be necessary to add authentication support. Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
@@ -107,3 +107,12 @@ process_common_args() {
|
||||
|
||||
test_binary_args=($@)
|
||||
}
|
||||
|
||||
download_hypervisor_fw() {
|
||||
FW_URL=$(curl --silent https://api.github.com/repos/cloud-hypervisor/rust-hypervisor-firmware/releases/latest | grep "browser_download_url" | grep -o 'https://.*[^ "]')
|
||||
FW="$WORKLOADS_DIR/hypervisor-fw"
|
||||
pushd $WORKLOADS_DIR
|
||||
rm -f $FW
|
||||
time wget --quiet $FW_URL || exit 1
|
||||
popd
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user