diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-12 09:42:19 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-12 09:42:19 +0100 |
| commit | 2b7ec4dd494ea016a242b1a698533be2c9a7940e (patch) | |
| tree | 63e40571c328c95790ffba4ccafcea2b90c86095 /.github | |
| parent | dafb757549b5238f67c49b2c8c0a1b44aedf0bd4 (diff) | |
chore: improve README.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/boot-ahci-dev.yml | 20 | ||||
| -rw-r--r-- | .github/workflows/boot-ahci.yml | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/.github/workflows/boot-ahci-dev.yml b/.github/workflows/boot-ahci-dev.yml new file mode 100644 index 00000000..ae628c52 --- /dev/null +++ b/.github/workflows/boot-ahci-dev.yml @@ -0,0 +1,20 @@ +name: BootZ CI (Develop, AHCI) + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - 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 + + diff --git a/.github/workflows/boot-ahci.yml b/.github/workflows/boot-ahci.yml index 4277aeaf..5951ea80 100644 --- a/.github/workflows/boot-ahci.yml +++ b/.github/workflows/boot-ahci.yml @@ -1,4 +1,4 @@ -name: BootZ CI (Develop,AHCI) +name: BootZ CI (AHCI) on: push: |
