From e664b953a0d712a40866d53ef0c12e0aa96def55 Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 14 Nov 2023 15:01:51 +0100 Subject: [PATCH] Take advantage of the 'xbuild' command (requires XTChain 2.8.5) --- .github/workflows/build.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f2e8e7..9bad586 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 - name: Build ExectOS run: | - echo "charch ${{ matrix.arch }} && ./configure.sh && cd build-${{ matrix.arch }}-xtchain && ninja -v && ninja diskimg -v" > build.cmds + echo "charch ${{ matrix.arch }} && ./configure.sh && cd build-${{ matrix.arch }}-xtchain && xbuild -v && xbuild diskimg -v" > build.cmds xtchain < build.cmds - name: Publish binaries if: ${{ github.ref == 'refs/heads/master' }} diff --git a/README.md b/README.md index 085786f..32cd76d 100644 --- a/README.md +++ b/README.md @@ -86,11 +86,11 @@ chbuild [DEBUG|RELEASE] Once the sources are configured, enter the build directory and compile the source code: ``` cd build -ninja +xbuild ``` It is also possible to build a disk image ready to use with QEMU with the following command: ``` -ninja diskimg +xbuild diskimg ``` # Contributing