Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 22 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,25 @@ jobs:
run: cargo build
- name: Run Test
run: cargo test

no-std:
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: riscv64imac-unknown-none-elf,wasm32-unknown-unknown
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
Comment thread
flyq marked this conversation as resolved.
- name: Check stateless-core (host no_std)
run: cargo check -p stateless-core --no-default-features
- name: Run stateless-core tests with --no-default-features
run: cargo test -p stateless-core --no-default-features --lib
- name: Build stateless-core for riscv64imac-unknown-none-elf
run: cargo build -p stateless-core --no-default-features --target riscv64imac-unknown-none-elf
- name: Build stateless-core for wasm32-unknown-unknown
run: cargo build -p stateless-core --no-default-features --target wasm32-unknown-unknown
117 changes: 64 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading