From ab0d6deef7aa44fedb138980dbda27db15d682ad Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 25 Mar 2025 22:11:57 +0100 Subject: add: more CIs Signed-off-by: Amlal El Mahrouss --- .github/workflows/ahci.yml | 20 ++++++++++++++++++++ .github/workflows/c-cpp.yml | 20 -------------------- .github/workflows/pio.yml | 20 ++++++++++++++++++++ 3 files changed, 40 insertions(+), 20 deletions(-) create mode 100644 .github/workflows/ahci.yml delete mode 100644 .github/workflows/c-cpp.yml create mode 100644 .github/workflows/pio.yml diff --git a/.github/workflows/ahci.yml b/.github/workflows/ahci.yml new file mode 100644 index 00000000..d1582470 --- /dev/null +++ b/.github/workflows/ahci.yml @@ -0,0 +1,20 @@ +name: NeKernel CI + +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 NeKernel (AHCI) + run: ./setup_amd64.sh && cd dev/kernel && export AHCI_SUPPORT=1 && make -f amd64-ci.make all + diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml deleted file mode 100644 index 4ab31f77..00000000 --- a/.github/workflows/c-cpp.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: C/C++ CI - -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 NeKernel (Generic) - run: ./setup_amd64.sh && cd dev/kernel && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all - diff --git a/.github/workflows/pio.yml b/.github/workflows/pio.yml new file mode 100644 index 00000000..b6251866 --- /dev/null +++ b/.github/workflows/pio.yml @@ -0,0 +1,20 @@ +name: NeKernel CI + +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 NeKernel (ATA PIO) + run: ./setup_amd64.sh && cd dev/kernel && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all + -- cgit v1.2.3