aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMarvin Borner2021-02-26 18:42:12 +0100
committerMarvin Borner2021-02-26 18:42:12 +0100
commitbefb8ea2821c8a67433800802ba46af5469cf368 (patch)
treea0dcba3e30c85e8351ac91178c90a2e2989fa3ec /.github
parent5cd84ad93f7d67cdaa134707fcce1b1ef85183ad (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.yml6
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