forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into johnw/nix-flake
- Loading branch information
Showing
326 changed files
with
9,392 additions
and
5,967 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
participants: | ||
- el_type: geth | ||
cl_type: lighthouse | ||
- el_type: reth | ||
el_extra_params: | ||
- --engine.experimental | ||
el_image: "ghcr.io/paradigmxyz/reth:kurtosis-ci" | ||
cl_type: teku | ||
additional_services: | ||
- assertoor | ||
assertoor_params: | ||
run_block_proposal_check: true | ||
run_transaction_test: true | ||
run_blob_transaction_test: true | ||
run_opcodes_transaction_test: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Runs `assertoor` tests on a `kurtosis` testnet. | ||
|
||
name: kurtosis | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# every day | ||
- cron: "0 1 * * *" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
prepare-reth: | ||
if: github.repository == 'paradigmxyz/reth' | ||
timeout-minutes: 45 | ||
runs-on: | ||
group: Reth | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: mkdir artifacts | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- name: Build reth | ||
run: | | ||
cargo build --features asm-keccak --profile hivetests --bin reth --locked | ||
mkdir dist && cp ./target/hivetests/reth ./dist/reth | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and export reth image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
file: .github/assets/hive/Dockerfile | ||
tags: ghcr.io/paradigmxyz/reth:kurtosis-ci | ||
outputs: type=docker,dest=./artifacts/reth_image.tar | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
- name: Upload reth image | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: ./artifacts | ||
|
||
test: | ||
timeout-minutes: 60 | ||
strategy: | ||
fail-fast: false | ||
name: run kurtosis | ||
runs-on: | ||
group: Reth | ||
needs: | ||
- prepare-reth | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Download reth image | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: artifacts | ||
path: /tmp | ||
|
||
- name: Load Docker image | ||
run: | | ||
docker load -i /tmp/reth_image.tar & | ||
wait | ||
docker image ls -a | ||
- name: Run kurtosis | ||
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | ||
with: | ||
ethereum_package_args: '.github/assets/kurtosis_network_params.yaml' | ||
|
||
notify-on-error: | ||
needs: test | ||
if: failure() | ||
runs-on: | ||
group: Reth | ||
steps: | ||
- name: Slack Webhook Action | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_MESSAGE: "Failed run: https://github.com/paradigmxyz/reth/actions/runs/${{ github.run_id }}" | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} |
Oops, something went wrong.