We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f915199 commit 267853eCopy full SHA for 267853e
1 file changed
.github/workflows/build.yml
@@ -36,7 +36,7 @@ jobs:
36
shell: bash
37
run: |
38
sudo apt-get update
39
- sudo apt-get install -y dos2unix coreutils
+ sudo apt-get install -y dos2unix
40
wget -q https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1736318325160/Xuantie-qemu-x86_64-Ubuntu-20.04-V5.0.5-B20250108-0335.tar.gz
41
tar zxvf Xuantie-qemu-x86_64-Ubuntu-20.04-V5.0.5-B20250108-0335.tar.gz
42
dos2unix ./install/qemu_post_install_small.sh
@@ -48,7 +48,11 @@ jobs:
48
[ ! -f "$QEMU_BIN" ] && echo "ERROR: $QEMU_BIN not found." && exit 1
49
50
tmp_output=$(mktemp)
51
+
52
+ echo "tmp_output after"
53
LD_DEBUG=libs "$QEMU_BIN" --version > /dev/null 2> "$tmp_output"
54
55
+ cat $tmp_output
56
status=$?
57
[ "$status" -eq 0 ] && echo "✅ QEMU 可成功运行。" && exit 0
58
0 commit comments