aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarvin Borner2021-05-18 18:37:19 +0200
committerMarvin Borner2021-05-18 18:37:50 +0200
commit4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch)
treeeeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /.github/workflows
parenteb13f2a8f536fecf918699bc19b3087a78a417d6 (diff)
Improved entire building chain (especially debugging)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6e88c24..cb9660e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,18 +16,18 @@ jobs:
uses: actions/cache@v1
with:
path: cross
- key: toller-compiler
+ key: toolchain
- name: Build cross compiler
if: steps.cache-cross.outputs.cache-hit != 'true'
run: sh run cross -y
- name: Build
- run: sh run build -y
+ run: MELVIX_CONFIG=release sh run build -y
- name: Upload as artifact
uses: actions/upload-artifact@v2
with:
name: disk-img
path: build/disk.img
- - name: Test without debug mode
- run: MELVIX_DEBUG=0 sh run test -y
+ - name: Test with release mode
+ run: MELVIX_CONFIG=release sh run test -y
- name: Test with debug mode
- run: MELVIX_DEBUG=1 sh run test -y
+ run: MELVIX_CONFIG=debug sh run test -y