summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-29 10:48:05 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-29 10:48:05 +0200
commit3167f59dbb401d6a79b1524537e04218baf49ee3 (patch)
treecb17577bcdc9714c97a84ce417a075117097f146 /.github
parent385210cacb86008a65d060a5d21b9a2451e9c076 (diff)
fix: Fix CI
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kernel-ahci.yml2
-rw-r--r--.github/workflows/kernel-pio.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/kernel-ahci.yml b/.github/workflows/kernel-ahci.yml
index a76865c0..a328a0f7 100644
--- a/.github/workflows/kernel-ahci.yml
+++ b/.github/workflows/kernel-ahci.yml
@@ -16,5 +16,5 @@ jobs:
- name: Install Packages
run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
- name: Build NeKernel (AHCI)
- run: ./setup_x64.sh && cd dev/kernel && export AHCI_SUPPORT=1 && make -f amd64-ci.make all
+ run: ./setup_x64_project.sh && cd dev/kernel && export AHCI_SUPPORT=1 && make -f amd64-ci.make all
diff --git a/.github/workflows/kernel-pio.yml b/.github/workflows/kernel-pio.yml
index e6a205b3..69f14a83 100644
--- a/.github/workflows/kernel-pio.yml
+++ b/.github/workflows/kernel-pio.yml
@@ -16,5 +16,5 @@ jobs:
- name: Install Packages
run: sudo apt update && sudo apt install mingw-w64 qemu-utils nasm
- name: Build NeKernel (ATA PIO)
- run: ./setup_x64.sh && cd dev/kernel && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all
+ run: ./setup_x64_project.sh && cd dev/kernel && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all