diff options
Diffstat (limited to '.github')
| -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: |
