[CHORE] src: release prep for nesystem. #292
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 Kernel [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 && ./scripts/any_ci_x64.sh | |