Skip to content

Commit

Permalink
Revert "merge origin/main"
Browse files Browse the repository at this point in the history
This reverts commit 5a5abeb.
  • Loading branch information
joshieDo committed Jul 29, 2024
1 parent 5a5abeb commit 3fa37f7
Show file tree
Hide file tree
Showing 256 changed files with 7,060 additions and 11,451 deletions.
20 changes: 9 additions & 11 deletions .github/assets/check_no_std.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,21 @@ set -eo pipefail

# TODO
no_std_packages=(
# The following were confirmed not working in the past, but could be enabled if issues have been resolved
# reth-codecs
# reth-consensus
# reth-db
# reth-primitives
# reth-revm
# reth-errors
# reth-ethereum-forks
# reth-evm
# reth-evm-ethereum
# reth-consensus
# the following are confirmed working
reth-errors
reth-ethereum-forks
reth-network-peers
reth-primitives-traits
reth-codecs
# reth-network-peers
# reth-primitives
# reth-primitives-traits
# reth-revm
)

for package in "${no_std_packages[@]}"; do
cmd="cargo +stable build -p $package --target wasm32-wasip1 --no-default-features"
cmd="cargo +stable build -p $package --target riscv32imac-unknown-none-elf --no-default-features"

if [ -n "$CI" ]; then
echo "::group::$cmd"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-wasip1
target: riscv32imac-unknown-none-elf
- uses: taiki-e/install-action@cargo-hack
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Ensure no arbitrary or proptest dependency on default build
run: cargo tree --package reth -e=features,no-dev | grep -Eq "arbitrary|proptest" && exit 1 || exit 0

lint-success:
name: lint success
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 3fa37f7

Please sign in to comment.