Skip to content

added the unit test infrastructure with a use of a dedicated linker s… #27

added the unit test infrastructure with a use of a dedicated linker s…

added the unit test infrastructure with a use of a dedicated linker s… #27

Workflow file for this run

name: Build Stellux OS
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Environment
run: sudo apt-get update
- name: Install Dependencies
run: make install-dependencies
- name: Build Stellux OS
run: make
- name: Verify that kernel ELF is created
run: |
if [ ! -f kernel/bin/kernel.elf ]; then
echo "Kernel ELF not found!"
exit 1
fi
- name: Verify that StelluxOS image is created
run: |
if [ ! -f bin/stellux.elf ]; then
echo "Stellux image not found!"
exit 1
fi
- name: Clean build
run: make clean