[CHORE] src: updated consolehost, dbghost with updated source code. #252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ne.app libSystem [BUILD] | |
| on: | |
| push: | |
| branches: [ "develop" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| env: | |
| BUILD_TYPE: KERNEL_BUILD | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Attempt NeBuild | |
| run: sudo curl https://git.src.nekernel.org/ne-build/releases/download/v0.0.6-apple-m1/ne-build-debian -o /usr/bin/nebuild && sudo chmod +x /usr/bin/nebuild | |
| - name: Check NeBuild | |
| run: nebuild -v | |
| - name: Install QEMU-IMG | |
| run: sudo apt update && sudo apt install qemu-utils | |
| - name: Attempt Kernel Build | |
| run: mkdir tmp && sudo apt install g++-mingw-w64-x86-64 gcc-mingw-w64 nasm && git clone https://github.com/ne-foss/krnl.git tmp/kernel && cd tmp/kernel/private/libSystem && nebuild libSystem.json | |