Skip to content

Routine style modifications and robustness enhancements. #266

Routine style modifications and robustness enhancements.

Routine style modifications and robustness enhancements. #266

Workflow file for this run

---
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
...