adding elf32 support base, adding multiboot infos, adding functions n… #67
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 | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y wget tar xz-utils mtools xorriso build-essential grub2-common | |
wget https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz | |
tar xf ./zig-linux-x86_64-0.13.0.tar.xz | |
sudo mv zig-linux-x86_64-0.13.0/* /bin | |
- name: Building | |
run: make | |