diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-26 23:22:57 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-26 23:22:57 -0500 |
| commit | e7c8d2bc9acc3dd82b0e7cc43b2a7ee06f916860 (patch) | |
| tree | 5e8853bb980da6250cd23b9f75b8efc187abc0e7 /.github/workflows/boot-ahci.yml | |
| parent | 38ec3f5ef393f19060f4fd1efe58504be1f9a4ac (diff) | |
chore: update CI work and readme.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows/boot-ahci.yml')
| -rw-r--r-- | .github/workflows/boot-ahci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/boot-ahci.yml b/.github/workflows/boot-ahci.yml new file mode 100644 index 00000000..071d50f8 --- /dev/null +++ b/.github/workflows/boot-ahci.yml @@ -0,0 +1,20 @@ +name: BootZ CI (ATA PIO) + +on: + push: + branches: [ "stable" ] + pull_request: + branches: [ "stable" ] + +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 | + cd src/boot export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all + + |
