Take advantage of the 'xbuild' command (requires XTChain 2.8.5)
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 3m50s
Builds / ExectOS (i686) (push) Successful in 28s

This commit is contained in:
2023-11-14 15:01:51 +01:00
부모 fc85e0674b
커밋 e664b953a0
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@@ -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' }}

파일 보기

@@ -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