Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scroll-tech/reth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e8f01a2985ece2bc312a3d5ed0fafd3dbb95d34f
Choose a base ref
..
head repository: scroll-tech/reth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 68e5b23d6257874a35df378994a70d2f2bf15c44
Choose a head ref
Showing 389 changed files with 5,084 additions and 17,591 deletions.
14 changes: 8 additions & 6 deletions .github/assets/check_rv32imac.sh
Original file line number Diff line number Diff line change
@@ -4,16 +4,18 @@ set +e # Disable immediate exit on error
# Array of crates to check
crates_to_check=(
reth-codecs-derive
reth-ethereum-forks
reth-ethereum-primitives
reth-primitives-traits
reth-optimism-forks
reth-network-peers
reth-trie-common
reth-chainspec
# reth-evm
# reth-primitives
# reth-optimism-chainspec

## ethereum
reth-ethereum-forks
reth-ethereum-primitives

## optimism
reth-optimism-chainspec
reth-optimism-forks
)

# Array to hold the results
3 changes: 0 additions & 3 deletions .github/assets/check_wasm.sh
Original file line number Diff line number Diff line change
@@ -10,9 +10,7 @@ crates=($(cargo metadata --format-version=1 --no-deps | jq -r '.packages[].name'
exclude_crates=(
# The following require investigation if they can be fixed
reth-basic-payload-builder
reth-beacon-consensus
reth-bench
reth-blockchain-tree
reth-cli
reth-cli-commands
reth-cli-runner
@@ -45,7 +43,6 @@ exclude_crates=(
reth-optimism-node
reth-optimism-payload-builder
reth-optimism-rpc
reth-optimism-primitives
reth-rpc
reth-rpc-api
reth-rpc-api-testing-util
10 changes: 7 additions & 3 deletions .github/assets/hive/parse.py
Original file line number Diff line number Diff line change
@@ -35,9 +35,13 @@
# Check if there are any unexpected failures or passes and exit with error
if unexpected_failures or unexpected_passes:
if unexpected_failures:
print("Unexpected Failures:", unexpected_failures)
print("Unexpected Failures:")
for test in unexpected_failures:
print(f" {test}")
if unexpected_passes:
print("Unexpected Passes:", unexpected_passes)
print("Unexpected Passes:")
for test in unexpected_passes:
print(f" {test}")
sys.exit(1)

print("Success.")
print("Success.")
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -76,7 +76,9 @@ jobs:
cache-on-failure: true
- uses: dcarbone/install-jq-action@v3
- name: Run Wasm checks
run: .github/assets/check_wasm.sh
run: |
sudo apt update && sudo apt install gcc-multilib
.github/assets/check_wasm.sh
riscv:
runs-on: ubuntu-latest
@@ -181,7 +183,7 @@ jobs:
--exclude op-reth --exclude "example-*" --exclude reth --exclude reth-payload-primitives \
--exclude reth-e2e-test-utils --exclude reth-ethereum-payload-builder --exclude reth-exex-test-utils \
--exclude reth-node-ethereum --exclude reth-scroll-cli --exclude reth-scroll-evm \
--exclude reth-scroll-node --exclude "scroll-reth*" --exclude reth-scroll-engine
--exclude reth-scroll-node --exclude "scroll-reth" --exclude reth-scroll-engine
book:
name: book
Loading