Skip to content

Commit

Permalink
CI: output boot log on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbird committed Jan 17, 2025
1 parent ad2a946 commit 902deb0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ci_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ sudo dpkg -i ../comcom64*.deb

. ./ci_test_prereq.sh

dosemu -td -E ver
if ! dosemu -td -o boot.log -E ver ; then
{
echo "================== boot.log ==================="
cat boot.log
echo "==============================================="
} >&2
exit 1
fi

make 32 -j 9
# make sure 32bit version also built
Expand Down

0 comments on commit 902deb0

Please sign in to comment.