Skip to content

Adds finit_module syscall support and refactors module handling. #351

Adds finit_module syscall support and refactors module handling.

Adds finit_module syscall support and refactors module handling. #351

Workflow file for this run

name: Check
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- arch: riscv64
target: riscv64gc-unknown-none-elf
- arch: loongarch64
target: loongarch64-unknown-none-softfloat
- arch: aarch64
target: aarch64-unknown-none-softfloat
- arch: x86_64
target: x86_64-unknown-none
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.arch }}
- uses: arceos-org/setup-musl@v1
with:
arch: ${{ matrix.arch }}
- name: Clippy
run: cargo clippy --target ${{ matrix.target }} -F qemu -- -D warnings