2024-10-10 17:07:00 +02:00
|
|
|
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
|
2024-12-12 20:16:42 +01:00
|
|
|
- name: Install cargo-deny
|
|
|
|
run: . ~/.bashrc && cargo install cargo-deny
|
|
|
|
- name: Run cargo-deny
|
|
|
|
run: . ~/.bashrc && cargo deny check
|