17 lines
439 B
YAML
17 lines
439 B
YAML
|
name: Build
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: debian-12
|
||
|
steps:
|
||
|
- name: Install dependencies
|
||
|
run: apt-get update && apt-get install -y clang gcc-multilib llvm mtools parted udev
|
||
|
- name: Install Rustup
|
||
|
run: curl https://sh.rustup.rs | sh -s -- -y
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
submodules: true
|
||
|
- name: Build
|
||
|
run: . ~/.bashrc && ./build.sh
|