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

Merge unstable into tree-states #4514

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8e65419
Ipv6 bootnodes update (#4394)
AgeManning Jul 3, 2023
dfcb336
Release v4.3.0 (#4452)
paulhauner Jul 4, 2023
a6d5c7d
Correct checks for backfill completeness (#4465)
jmcph4 Jul 6, 2023
ea2420d
Bump default checkpoint sync timeout to 3 minutes (#4466)
michaelsproul Jul 8, 2023
c25825a
Move the `BeaconProcessor` into a new crate (#4435)
paulhauner Jul 10, 2023
420e9c4
Add state-root command and network support to lcli (#4492)
michaelsproul Jul 12, 2023
62c9170
Remove hidden re-exports to appease Rust 1.73 (#4495)
jmcph4 Jul 12, 2023
0c7eed5
bump proc-macro2 (#4464)
0xTylerHolmes Jul 12, 2023
6c37520
Fix HTTP state API bug and add `--epochs-per-migration` (#4236)
michaelsproul Jul 17, 2023
5cd738c
Use unique arg names for eth1-sim (#4463)
jimmygchen Jul 17, 2023
1a5de8b
Remove instances of required arguments with default values (#4489)
jmcph4 Jul 17, 2023
03674c7
Update mev-rs and remove patches (#4496)
michaelsproul Jul 17, 2023
5569d97
Remove wget dependency (#4497)
michaelsproul Jul 17, 2023
68d5a6c
Clean up local testnet files without prompting (#4498)
jimmygchen Jul 17, 2023
d4a6175
CI fix: add retries to eth1 sim tests (#4501)
jimmygchen Jul 17, 2023
f2223fe
Rust 1.71 lints (#4503)
pawanjay176 Jul 17, 2023
a25ec16
Speed up CI by installing foundry with Github action (#4505)
jimmygchen Jul 17, 2023
4435a22
Cleanup unreachable code in `lcli::generate_bootnode_enr` and some te…
divagant-martian Jul 17, 2023
fc7f1ba
Phase 0 attestation rewards via Beacon API (#4474)
jimmygchen Jul 18, 2023
8423e9f
Merge remote-tracking branch 'origin/unstable' into tree-states
michaelsproul Jul 19, 2023
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
25 changes: 12 additions & 13 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Run tests in release
run: make test-release
release-tests-windows:
Expand All @@ -78,9 +78,8 @@ jobs:
run: |
choco install python protoc visualstudio2019-workload-vctools -y
npm config set msvs_version 2019
- name: Install anvil
# Extra feature to work around https://github.com/foundry-rs/foundry/issues/5115
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil --features ethers/ipc
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Install make
run: choco install -y make
- uses: KyleMayes/install-llvm-action@v1
Expand Down Expand Up @@ -141,8 +140,8 @@ jobs:
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Run tests in debug
run: make test-debug
state-transition-vectors-ubuntu:
Expand Down Expand Up @@ -197,8 +196,8 @@ jobs:
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Run the beacon chain sim that starts from an eth1 contract
run: cargo run --release --bin simulator eth1-sim
merge-transition-ubuntu:
Expand All @@ -213,8 +212,8 @@ jobs:
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Run the beacon chain sim and go through the merge transition
run: cargo run --release --bin simulator eth1-sim --post-merge
no-eth1-simulator-ubuntu:
Expand Down Expand Up @@ -243,8 +242,8 @@ jobs:
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install Foundry (anvil)
uses: foundry-rs/foundry-toolchain@v1
- name: Run the syncing simulator
run: cargo run --release --bin simulator syncing-sim
doppelganger-protection-test:
Expand Down
130 changes: 81 additions & 49 deletions Cargo.lock

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

Loading
Loading