summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/libsystem-build.yml
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-21 07:22:22 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-21 07:22:22 +0100
commit9cfc7e48641ebff619faa9ac68661f5b8c027db7 (patch)
treee6a6ecc3440b399905d105285741a1c73a83e5c6 /.github/workflows/libsystem-build.yml
parent977eaddc2eacb32af53845955d24c800ad4ad748 (diff)
[FEAT] Update .github CI rules for libDDK and libSystem.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows/libsystem-build.yml')
-rw-r--r--.github/workflows/libsystem-build.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/libsystem-build.yml b/.github/workflows/libsystem-build.yml
new file mode 100644
index 0000000..d2bb563
--- /dev/null
+++ b/.github/workflows/libsystem-build.yml
@@ -0,0 +1,26 @@
+name: Ne.org 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/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-org/ne_kernel.git tmp/kernel && cd tmp/kernel/src/libSystem && nebuild libSystem.json
+