Routine style modifications and robustness enhancements. #266
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: CI Workflow | |
| on: | |
| push: | |
| paths: | |
| - 'boot/**' | |
| - 'drivers/**' | |
| - 'fs/**' | |
| - 'include/**' | |
| - 'init/**' | |
| - 'kernel/**' | |
| - 'libs/**' | |
| - 'mem/**' | |
| pull_request: | |
| paths: | |
| - 'boot/**' | |
| - 'drivers/**' | |
| - 'fs/**' | |
| - 'include/**' | |
| - 'init/**' | |
| - 'kernel/**' | |
| - 'libs/**' | |
| - 'mem/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install packages | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: make gcc xorriso | |
| version: 1.0 | |
| - name: Build Project | |
| run: make VERBOSE=1 | |
| - name: Upload ISO file as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Uinxed-x64.iso | |
| path: ./Uinxed-x64.iso | |
| - name: Upload Kernel file as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: UxImage | |
| path: ./UxImage | |
| ... |