Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Fixed naming

Fixed naming #7

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "nightly" ]
pull_request:
branches: [ "nitghly" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
target: x86_64-unknown-none
components: rust-src
- name: Add rust-src
run: rustup component add rust-src --toolchain nightly-2025-04-03-x86_64-unknown-linux-gnu
- name: Update Debian repositories
run: sudo apt-get update
- name: Setup nasm
run: sudo apt-get install -y nasm
- name: Install xorriso
run: sudo apt-get install -y xorriso
- name: Install qemu
run: sudo apt-get install qemu-system-x86
- name: Run make
run: make
- uses: actions/upload-artifact@v4
with:
name: 'hexium.iso'
path: 'hexium-x86_64.iso'