Replace fast_{copy,set32}
with native Rust
#258
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: rustup show active-toolchain || rustup toolchain install | |
- name: clippy | |
env: | |
BASEDIR: "." | |
run: cargo clippy --target x86_64-unknown-uefi -- -D warnings | |
continue-on-error: true | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt install --yes make mtools parted | |
rustup show active-toolchain || rustup toolchain install | |
- name: Build UEFI application | |
run: make |