summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-26 23:33:25 -0500
committerGitHub <noreply@github.com>2025-11-26 23:33:25 -0500
commit7e65e8663a27684580b777a6b2bfb45071f8db41 (patch)
tree27c753af2601a5cd7dd505dc7c799ca1bb6d86dc
parente4d42fe558df44489f54efd3c52be965a3b8c574 (diff)
parentb0f5922e18a40b22da88ce220a36cc20aa99b8ea (diff)
Merge pull request #86 from nekernel-org/dev
chore: new CI for nekernel.
-rw-r--r--.github/workflows/boot-ahci.yml20
-rw-r--r--.github/workflows/boot-pio.yml7
-rw-r--r--.github/workflows/kernel-ahci-dev.yml5
-rw-r--r--.github/workflows/kernel-ahci.yml5
-rw-r--r--.github/workflows/kernel-pio-dev.yml5
-rw-r--r--.github/workflows/kernel-pio.yml5
-rw-r--r--README.md9
-rw-r--r--meta/media/demo.gif (renamed from meta/png/demo.gif)bin265905 -> 265905 bytes
-rw-r--r--meta/media/nekernel.png (renamed from meta/png/nekernel.png)bin156843 -> 156843 bytes
9 files changed, 41 insertions, 15 deletions
diff --git a/.github/workflows/boot-ahci.yml b/.github/workflows/boot-ahci.yml
new file mode 100644
index 00000000..db220342
--- /dev/null
+++ b/.github/workflows/boot-ahci.yml
@@ -0,0 +1,20 @@
+name: BootZ CI (ATA PIO)
+
+on:
+ push:
+ branches: [ "stable" ]
+ pull_request:
+ branches: [ "stable" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ cd src/boot export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all
+
+
diff --git a/.github/workflows/boot-pio.yml b/.github/workflows/boot-pio.yml
index 4f1512bb..cff1c3a3 100644
--- a/.github/workflows/boot-pio.yml
+++ b/.github/workflows/boot-pio.yml
@@ -1,4 +1,4 @@
-name: BootZ CI (ATA PIO)
+name: BootZ CI (AHCI)
on:
push:
@@ -13,7 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Install Packages
- run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ cd src/boot export AHCI_SUPPORT=1 && make -f amd64-ci.make all
diff --git a/.github/workflows/kernel-ahci-dev.yml b/.github/workflows/kernel-ahci-dev.yml
index ed6252c9..a627b149 100644
--- a/.github/workflows/kernel-ahci-dev.yml
+++ b/.github/workflows/kernel-ahci-dev.yml
@@ -13,5 +13,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Install Packages
- run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && ./kernel_ci_x64.sh
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ ./modules_ahci_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh \ No newline at end of file
diff --git a/.github/workflows/kernel-ahci.yml b/.github/workflows/kernel-ahci.yml
index 883cda2c..637bcee6 100644
--- a/.github/workflows/kernel-ahci.yml
+++ b/.github/workflows/kernel-ahci.yml
@@ -13,6 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Install Packages
- run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && ./kernel_ci_x64.sh
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ ./modules_ahci_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh
diff --git a/.github/workflows/kernel-pio-dev.yml b/.github/workflows/kernel-pio-dev.yml
index dd6cd56f..eb304724 100644
--- a/.github/workflows/kernel-pio-dev.yml
+++ b/.github/workflows/kernel-pio-dev.yml
@@ -13,6 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Install Packages
- run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ ./modules_pio_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh
\ No newline at end of file
diff --git a/.github/workflows/kernel-pio.yml b/.github/workflows/kernel-pio.yml
index 1d924e8a..129cbf82 100644
--- a/.github/workflows/kernel-pio.yml
+++ b/.github/workflows/kernel-pio.yml
@@ -13,6 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Install Packages
- run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
+ - name: Build CI
+ run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm |
+ ./modules_pio_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh
\ No newline at end of file
diff --git a/README.md b/README.md
index 36972274..c1f63740 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
<!-- Read Me of NeKernel -->
<div align="center">
- <img src="meta/png/nekernel.png" alt="NeKernel Logo" width="180"/>
+ <img src="meta/media/nekernel.png" alt="NeKernel Logo" width="180"/>
<p>
<b>Modern, Modular, and Secure Microkernel for Next-Generation Systems</b>
</p>
@@ -13,7 +13,7 @@
</p>
</div>
-<img src="meta/png/demo.gif" alt="NeKernel Logo" width="1280"/>
+<img src="meta/media/demo.gif" alt="NeKernel Logo" width="1280"/>
---
@@ -60,8 +60,9 @@
```sh
git clone https://github.com/nekernel-org/nekernel.git
cd nekernel
-./setup_x64.sh
-./debug_ata_x64.sh # For generic ATA PIO target (QEMU)
+./setup_x64_project.sh
+./modules_ahci_x64.sh
+./debug_ahci_x64.sh # For generic ATA PIO target (QEMU)
```
- For ARM64 or other targets, see the scripts in `src/boot/`.
diff --git a/meta/png/demo.gif b/meta/media/demo.gif
index ce74a00c..ce74a00c 100644
--- a/meta/png/demo.gif
+++ b/meta/media/demo.gif
Binary files differ
diff --git a/meta/png/nekernel.png b/meta/media/nekernel.png
index 565a1dbc..565a1dbc 100644
--- a/meta/png/nekernel.png
+++ b/meta/media/nekernel.png
Binary files differ