summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-19 20:08:14 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-19 20:08:14 +0100
commit0da3197b8001b58a102edc5c884241f73268b76b (patch)
tree0606fabbb213e5e8547c1b2f2cb50e3cfe51ce42 /.github
parent5e5722c2608b16384295f327838010e2cd2aba8c (diff)
[FEAT] Remove useless headers and add CI rule.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kernel-build.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/kernel-build.yml b/.github/workflows/kernel-build.yml
new file mode 100644
index 0000000..9cf87b1
--- /dev/null
+++ b/.github/workflows/kernel-build.yml
@@ -0,0 +1,26 @@
+name: Ne.org Kernel [BUILD]
+
+on:
+ push:
+ branches: [ "develop" ]
+ pull_request:
+ branches: [ "develop" ]
+
+env:
+ BUILD_TYPE: KERNEL_IMG_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 && git clone https://github.com/ne-foss-org/ne_kernel.git tmp/kernel && cd tmp/kernel && cd src/kernel && make -f amd64-ci.make all
+