Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: no_std and workflow #727

Merged
merged 6 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: move to ci
  • Loading branch information
DaniPopes committed Sep 6, 2024
commit ba279015a8cd404a04562ea6dc024075ab14a01c
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,19 @@ jobs:
- name: cargo hack
run: cargo hack check --feature-powerset --depth 2

check-no-std:
name: check no_std ${{ matrix.features }}
runs-on: ubuntu-latest
timeout-minutes: 30
env:
NO_STD_TARGET: riscv32imac-unknown-none-elf
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.NO_STD_TARGET }}
- run: cargo hack check --no-default-features --target ${{ env.NO_STD_TARGET }}

clippy:
runs-on: ubuntu-latest
timeout-minutes: 30
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/no_std.yml

This file was deleted.

Loading