[FEAT] src: update HAL.h #157
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 MinOSKrnl libDDK CI [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/nebuild/releases/download/v0.0.6-apple-m1/nebuild-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/ne-kernel.git tmp/kernel && cd tmp/kernel/private/libDDK && nebuild libDDK.json | |