Skip to content

Commit

Permalink
meta: add github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool authored Jul 29, 2023
1 parent 6378ef0 commit 4e5d91d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

on:
workflow_dispatch:
push:
branches:
- limine
- limine-workflow

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install packages
run: sudo apt install -y make gcc xorriso cmake git

- name: Setup limine
run: ./setup.sh

- name: Configure CMake
run: cmake -B build

- name: Build
run: cmake --build build

- name: Upload built ISO
uses: actions/upload-artifact@v3
with:
name: mat-os
path: build/kernel.iso

0 comments on commit 4e5d91d

Please sign in to comment.