From 4b4bfec8a312132acc84b5166998d0cfa7c01931 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 18 May 2021 18:37:19 +0200 Subject: Improved entire building chain (especially debugging) --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.2.3