Skip to content

Commit

Permalink
Merge pull request #103 from andrewbird/ci-101
Browse files Browse the repository at this point in the history
CI: output boot log on failure
  • Loading branch information
stsp authored Jan 17, 2025
2 parents ad2a946 + 902deb0 commit fee64c6
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 fee64c6

Please sign in to comment.