Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from Winksplorer/main
Browse files Browse the repository at this point in the history
  • Loading branch information
9xbt authored Jul 20, 2023
2 parents c967920 + 9e060dd commit 62cc083
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,19 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Install prerequisites
run: |
sudo apt update
sudo apt install -y make nasm mkisofs
- name: Build project
run: |
nasm -f bin -o kernel.bin src/kernel.asm
mv kernel.bin bin/kernel.bin
mkisofs -b kernel.bin -no-emul-boot -o kernel.iso bin/
- name: Configure
run: make configure

- name: Build
run: make build
- name: Clean project
run: |
rm -rvf kernel.bin
rm -rvf kernel.iso

0 comments on commit 62cc083

Please sign in to comment.