Skip to content
Merged
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
Merge branch 'main' into const-blocks
  • Loading branch information
rakita authored Jun 21, 2024
commit 32c37516f877a93c6bee59bab5a386527425598d
23 changes: 3 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: cargo test --workspace ${{ matrix.flags }}

check-no-std:
name: check no_std
name: check no_std ${{ matrix.features }}
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
Expand All @@ -44,6 +44,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: riscv32imac-unknown-none-elf

- run: cargo check --target riscv32imac-unknown-none-elf --no-default-features --features=${{ matrix.features }}

check:
Expand All @@ -57,25 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features -p revm

check-serde:
name: check serde
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features --features serde -p revm

check-std:
name: check std
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features --features std -p revm
- run: cargo check --no-default-features -p revm --features=${{ matrix.features }}

clippy:
name: clippy
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.