summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ahci.yml20
-rw-r--r--.github/workflows/pio.yml (renamed from .github/workflows/c-cpp.yml)4
2 files changed, 22 insertions, 2 deletions
diff --git a/.github/workflows/ahci.yml b/.github/workflows/ahci.yml
new file mode 100644
index 00000000..d1582470
--- /dev/null
+++ b/.github/workflows/ahci.yml
@@ -0,0 +1,20 @@
+name: NeKernel CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
+ - name: Build NeKernel (AHCI)
+ run: ./setup_amd64.sh && cd dev/kernel && export AHCI_SUPPORT=1 && make -f amd64-ci.make all
+
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/pio.yml
index 4ab31f77..b6251866 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/pio.yml
@@ -1,4 +1,4 @@
-name: C/C++ CI
+name: NeKernel CI
on:
push:
@@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v4
- name: Install Packages
run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
- - name: Build NeKernel (Generic)
+ - name: Build NeKernel (ATA PIO)
run: ./setup_amd64.sh && cd dev/kernel && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all