diff options
author | Marvin Borner | 2021-02-26 18:42:12 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-26 18:42:12 +0100 |
commit | befb8ea2821c8a67433800802ba46af5469cf368 (patch) | |
tree | a0dcba3e30c85e8351ac91178c90a2e2989fa3ec /.github | |
parent | 5cd84ad93f7d67cdaa134707fcce1b1ef85183ad (diff) |
Added debug testing
Qemu on GH seems to have some problems though.. I guess the current
errors are actually internal bugs of their qemu version. Idk
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3dc050..d909e45 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,5 +27,7 @@ jobs: with: name: disk-img path: build/disk.img - - name: Test everything - run: sh run test -y + - name: Test without debug mode + run: MELVIX_DEBUG=0 sh run test -y + - name: Test with debug mode + run: MELVIX_DEBUG=1 sh run test -y |