Skip to content

Merge branch 'main' of github.com:elliott10/lwext4_rust #1

Merge branch 'main' of github.com:elliott10/lwext4_rust

Merge branch 'main' of github.com:elliott10/lwext4_rust #1

Workflow file for this run

name: Build CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
arch: [riscv64]
rust-toolchain: [nightly, nightly-2024-01-31]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust-toolchain }}
components: rust-src
- uses: actions-rs/install@v0.1
with:
crate: cargo-binutils
version: latest
use-tool-cache: true
- uses: ./.github/workflows/actions/setup-musl
with:
arch: ${{ matrix.arch }}
- name: Build ${{ github.repository }}
run: cargo build -vv --target riscv64gc-unknown-none-elf