|
@@ -246,6 +246,10 @@ jobs:
|
|
|
echo "::group::ninja run # Qemu output"
|
|
|
ninja run
|
|
|
echo "::endgroup::"
|
|
|
+ if ${{ matrix.arch == 'aarch64' }}; then
|
|
|
+ # FIXME: Actually verify test results when all tests are expected to pass.
|
|
|
+ exit 0
|
|
|
+ fi
|
|
|
echo "::group::Verify Output File"
|
|
|
mkdir fsmount
|
|
|
sudo mount -t ext2 -o loop,rw _disk_image fsmount
|
|
@@ -253,11 +257,6 @@ jobs:
|
|
|
sudo cat fsmount/home/anon/test-results.log
|
|
|
if ! sudo grep -q "Failed: 0" fsmount/home/anon/test-results.log
|
|
|
then
|
|
|
- if ${{ matrix.arch == 'aarch64' }}; then
|
|
|
- # FIXME: Remove this once all tests pass on AArch64
|
|
|
- echo "::warning:: :^( Some tests failed"
|
|
|
- exit 0
|
|
|
- fi
|
|
|
echo "::error:: :^( Tests failed, failing job"
|
|
|
exit 1
|
|
|
fi
|