Skip to content

Commit 902deb0

Browse files
committed
CI: output boot log on failure
1 parent ad2a946 commit 902deb0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

ci_test.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ sudo dpkg -i ../comcom64*.deb
66

77
. ./ci_test_prereq.sh
88

9-
dosemu -td -E ver
9+
if ! dosemu -td -o boot.log -E ver ; then
10+
{
11+
echo "================== boot.log ==================="
12+
cat boot.log
13+
echo "==============================================="
14+
} >&2
15+
exit 1
16+
fi
1017

1118
make 32 -j 9
1219
# make sure 32bit version also built

0 commit comments

Comments
 (0)