Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ JAVA_HOME="$(dirname $(dirname $(realpath $(command -v javac))))"
export JAVA_HOME
echo -e "JAVA_HOME=${JAVA_HOME}\nexport JAVA_HOME" > /etc/profile.d/java_home.sh

# qemu-system-arm
apt-get install -y --no-install-recommends --fix-broken qemu-system-arm="${qemu_system_arm_version}*"
# QEMU system emulators for ARM and x86
apt-get install -y --no-install-recommends --fix-broken \
qemu-system-arm="${qemu_system_version}*" \
qemu-system-x86="${qemu_system_version}*"

# basedpyright
su $(ls /home) -c "uv tool install basedpyright@\"${basedpyright_version}\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ fi
check "validate lcov is working and has the correct version" bash -c "lcov --version | grep '${lcov_version}'"

# Qemu target-related tools
check "validate qemu-system-aarch64 is working and has the correct version" bash -c "qemu-system-aarch64 --version | grep '${qemu_system_arm_version}'"
check "validate qemu-system-aarch64 is working and has the correct version" bash -c "qemu-system-aarch64 --version | grep '${qemu_system_version}'"
check "validate qemu-system-x86_64 is working and has the correct version" bash -c "qemu-system-x86_64 --version | grep '${qemu_system_version}'"
check "validate sshpass is working and has the correct version" bash -c "sshpass -V | grep '${sshpass_version}'"
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ graphviz:
version: 2.42.2
protobuf_compiler:
version: 3.21.12
qemu_system_arm:
qemu_system:
version: 1:8.2.2
sshpass:
version: 1.09
Expand Down