diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-03 09:20:01 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-03 09:20:01 +0200 |
| commit | bebcbe04c2b47b3b4fcdc093b1736cc0295109fe (patch) | |
| tree | e2509b7f9b59643b2a97773604aa383a2fd2e2f3 /.github | |
| parent | 71dddecbce68f803820b780ccb8c744935256b49 (diff) | |
feat: Add CI for the `dev` branch.0.0.3
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/kernel-ahci-dev.yml | 18 | ||||
| -rw-r--r-- | .github/workflows/kernel-pio-dev.yml | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/.github/workflows/kernel-ahci-dev.yml b/.github/workflows/kernel-ahci-dev.yml new file mode 100644 index 00000000..a1a47fa3 --- /dev/null +++ b/.github/workflows/kernel-ahci-dev.yml @@ -0,0 +1,18 @@ +name: NeKernel CI (AHCI) + +on: + push: + branches: [ "dev" ] + pull_request: + branches: [ "dev" ] + +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 + diff --git a/.github/workflows/kernel-pio-dev.yml b/.github/workflows/kernel-pio-dev.yml new file mode 100644 index 00000000..dd6cd56f --- /dev/null +++ b/.github/workflows/kernel-pio-dev.yml @@ -0,0 +1,18 @@ +name: NeKernel CI (ATA PIO) + +on: + push: + branches: [ "dev" ] + pull_request: + branches: [ "dev" ] + +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 +
\ No newline at end of file |
