summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/boot-ahci-dev.yml20
-rw-r--r--.github/workflows/boot-ahci.yml2
-rw-r--r--README.md15
3 files changed, 30 insertions, 7 deletions
diff --git a/.github/workflows/boot-ahci-dev.yml b/.github/workflows/boot-ahci-dev.yml
new file mode 100644
index 00000000..ae628c52
--- /dev/null
+++ b/.github/workflows/boot-ahci-dev.yml
@@ -0,0 +1,20 @@
+name: BootZ CI (Develop, AHCI)
+
+on:
+ push:
+ branches: [ "develop" ]
+ pull_request:
+ branches: [ "develop" ]
+
+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-ahci.yml b/.github/workflows/boot-ahci.yml
index 4277aeaf..5951ea80 100644
--- a/.github/workflows/boot-ahci.yml
+++ b/.github/workflows/boot-ahci.yml
@@ -1,4 +1,4 @@
-name: BootZ CI (Develop,AHCI)
+name: BootZ CI (AHCI)
on:
push:
diff --git a/README.md b/README.md
index 40413d7b..e71a9459 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,8 @@
<b>NeKernel</b>
</h1>
<p>
- <a href="https://github.com/nekernel-org/nekernel/actions/workflows/boot-pio-dev.yml"><img src="https://github.com/nekernel-org/nekernel/actions/workflows/boot-pio.yml/badge.svg" alt="CI"></a>
- <a href="https://github.com/nekernel-org/nekernel/actions/workflows/kernel-ahci-dev.yml"><img src="https://github.com/nekernel-org/nekernel/actions/workflows/kernel-ahci.yml/badge.svg" alt="CI"></a>
+ <a href="https://github.com/nekernel-org/nekernel/actions/workflows/boot-ahci-dev.yml/badge.svg"><img src="https://github.com/nekernel-org/nekernel/actions/workflows/boot-ahci-dev.yml/badge.svg" alt="CI"></a>
+ <a href="https://github.com/nekernel-org/nekernel/actions/workflows/kernel-ahci-dev.yml/badge.svg"><img src="https://github.com/nekernel-org/nekernel/actions/workflows/kernel-ahci-dev.yml/badge.svg" alt="CI"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache--2.0-blue.svg" alt="License"></a>
</p>
</div>
@@ -16,10 +16,13 @@
## Getting Started
### **Requirements**
-- [MinGW](https://www.mingw-w64.org/) (AMD64 targets)
-- [Clang](https://clang.llvm.org/) (ARM64 targets)
-- [NASM](https://nasm.us/) (AMD64 targets)
-- [NeBuild](https://github.com/nekernel-org/nebuild) (build system)
+
+- [MinGW](https://www.mingw-w64.org/)
+- [Clang](https://clang.llvm.org/)
+- [NASM](https://nasm.us/)
+- [NeBuild](https://github.com/nekernel-org/nebuild)
+- CoreUtils
+- Git
### **Building & Running**