diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-29 10:43:36 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-29 10:43:36 +0100 |
| commit | 706c35739e4969836feed49bc07fc29b03569753 (patch) | |
| tree | 6601e55451c88e7366adcc1f57ae27e5a3e1c4ae /.github/workflows | |
| parent | 290a71e21983c1f2868db4ecf65709f135119e1a (diff) | |
ci: Improve CI, add bootloader CI too.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/boot-pio.yml | 20 | ||||
| -rw-r--r-- | .github/workflows/kernel-ahci.yml (renamed from .github/workflows/ahci.yml) | 2 | ||||
| -rw-r--r-- | .github/workflows/kernel-pio.yml (renamed from .github/workflows/pio.yml) | 2 |
3 files changed, 22 insertions, 2 deletions
diff --git a/.github/workflows/boot-pio.yml b/.github/workflows/boot-pio.yml new file mode 100644 index 00000000..80c5b932 --- /dev/null +++ b/.github/workflows/boot-pio.yml @@ -0,0 +1,20 @@ +name: BootZ CI (ATA PIO) + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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 + - name: Build BootZ (ATA PIO) + run: cd dev/boot && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all + diff --git a/.github/workflows/ahci.yml b/.github/workflows/kernel-ahci.yml index d1582470..51cb54a3 100644 --- a/.github/workflows/ahci.yml +++ b/.github/workflows/kernel-ahci.yml @@ -1,4 +1,4 @@ -name: NeKernel CI +name: NeKernel CI (AHCI) on: push: diff --git a/.github/workflows/pio.yml b/.github/workflows/kernel-pio.yml index b6251866..57f6faee 100644 --- a/.github/workflows/pio.yml +++ b/.github/workflows/kernel-pio.yml @@ -1,4 +1,4 @@ -name: NeKernel CI +name: NeKernel CI (ATA PIO) on: push: |
