Skip to content

Bump limine from d100ea6 to c93da49 #285

Bump limine from d100ea6 to c93da49

Bump limine from d100ea6 to c93da49 #285

Workflow file for this run

name: Retro Rocket CI
on:
push:
pull_request:
jobs:
iso:
name: Build and package ISO
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install apt packages
run: sudo apt-get update &&
sudo apt-get install nasm xorriso
- name: Generate CMake
run: mkdir build && cd build && cmake ..
- name: Build Project
run: cd build && make -j4
- name: Prepare for packaging
run: cd build && mkdir package && cp -rv *.sh *.iso package/
- name: Upload Binary (iso)
uses: actions/upload-artifact@v3
with:
name: "retro-rocket"
path: '${{github.workspace}}/build/package/*'