summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-27 06:15:36 -0500
committerGitHub <noreply@github.com>2025-11-27 06:15:36 -0500
commita4c84210e0f2e54098d9865f9d5c23f99a5558b0 (patch)
treecf1a927d3a1fb3d4c063850c717955d4c6f87417 /.github/workflows
parent8481051f42ceeaa1c7af443e76d7179aede26cb4 (diff)
parenta710b34d680d55b08c5114c4a96a5a1c24f31f24 (diff)
Merge pull request #88 from nekernel-org/dev
chore: fix BootZ workflows.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/boot-ahci.yml2
-rw-r--r--.github/workflows/boot-pio.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/boot-ahci.yml b/.github/workflows/boot-ahci.yml
index 969051c7..8232219a 100644
--- a/.github/workflows/boot-ahci.yml
+++ b/.github/workflows/boot-ahci.yml
@@ -15,6 +15,6 @@ jobs:
- 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
+ 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 9aecfd4a..45ba3d2b 100644
--- a/.github/workflows/boot-pio.yml
+++ b/.github/workflows/boot-pio.yml
@@ -15,6 +15,6 @@ jobs:
- 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 AHCI_SUPPORT=1 && make -f amd64-ci.make all
+ cd src/boot && export AHCI_SUPPORT=1 && make -f amd64-ci.make all