wip #196
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 | |
on: [push, pull_request] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Toolchains | |
run: | | |
sudo apt update | |
sudo apt install clang lld llvm python3 git ninja-build libsdl2-dev nasm gcc-multilib | |
git clone https://github.com/cute-engineering/chatty --depth=1 --branch=main --single-branch | |
sudo pip install -e chatty/ | |
git clone https://github.com/cute-engineering/cutekit --depth=1 --branch=dev --single-branch | |
sudo pip install -e cutekit/ | |
- name: Install Packages | |
run: cutekit install | |
- name: Build Kernel (x86_64) | |
run: cutekit build --target=kernel-x86_64 | |
- name: Build EFI (x86_64) | |
run: cutekit build --target=efi-x86_64 | |
- name: Build Userspace (x86_64) | |
run: cutekit build --target=skift-x86_64 | |
- name: Build Host | |
run: cutekit build |