vfs: pipe #16
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: build the kernel | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: archlinux:latest | |
| strategy: | |
| matrix: | |
| ilobilix_arch: [x86_64, aarch64] | |
| fail-fast: false | |
| steps: | |
| - name: Update and install dependencies | |
| run: | | |
| pacman --noconfirm -Syu | |
| pacman --needed --noconfirm -S base-devel clang lld llvm cmake ninja xorriso git | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: 'true' | |
| - name: Setup build directory | |
| run: cmake -S . -B build -DILOBILIX_ARCH=${{ matrix.ilobilix_arch }} -DILOBILIX_SYSCALL_LOG=ON -DILOBILIX_UBSAN=ON -DILOBILIX_LIMINE_MP=OFF | |
| - name: Build the kernel | |
| run: cmake --build build |