This repository was archived by the owner on Dec 31, 2025. It is now read-only.
Paging, Testing and VMM #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Makefile CI | |
| on: | |
| push: | |
| branches: ["nightly", "dev", "beta", "stable"] | |
| pull_request: | |
| branches: ["nightly", "dev", "beta", "stable"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang nasm make xorriso git curl qemu-system-x86 | |
| - name: Generate Configuration | |
| run: make defconfig | |
| - name: Test Kernel | |
| run: make test |