summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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