Skip to content

rust: rename */.cargo/config as config.toml #308

rust: rename */.cargo/config as config.toml

rust: rename */.cargo/config as config.toml #308

Workflow file for this run

name: Doc
on:
pull_request:
push:
branches:
main
jobs:
doc_riscv64:
runs-on: ubuntu-latest
env:
TARGET: riscv64gc-unknown-none-elf
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v27
- name: Build doc
run: nix develop --command sh -c "
cd kernel &&
cargo doc --target ${{ env.TARGET }} --all-features
"
doc_aarch64:
runs-on: ubuntu-latest
env:
TARGET: aarch64-unknown-none
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v27
- name: Build doc
run: nix develop --command sh -c "
cd kernel &&
cargo doc --target ${{ env.TARGET }} --all-features
"