Update cmake.yml #2
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: BasicallyLinux Build Pipeline | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| name: Compile Kernel | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Install Toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| nasm \ | |
| make \ | |
| binutils-i686-linux-gnu \ | |
| gcc-i686-linux-gnu \ | |
| grub-common \ | |
| xorriso | |
| - name: Build BasicallyLinux | |
| # We override the compiler variables to use the installed cross-compiler | |
| run: | | |
| mkdir -p bin | |
| make CC=i686-linux-gnu-gcc LD=i686-linux-gnu-ld AS=nasm | |
| - name: Archive Build Artifacts | |
| if: success() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: basicallylinux-binary | |
| path: bin/basicallylinux.bin |