added a vmshutdown API to shutdown the virtual machine from within th… #25
Workflow file for this run
This file contains 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 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 |