Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into alexey/pruner-receipts
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Jul 24, 2023
2 parents cb16935 + cb0947d commit 12582e4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
# Skip the Fuzzing Jobs until we make them run fast and reliably. Currently they will
# always recompile the codebase for each test and that takes way too long.
if: false
runs-on: ubuntu-20.04
runs-on:
group: Reth
strategy:
matrix:
target:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/hive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ concurrency:
name: hive
jobs:
prepare:
runs-on: ubuntu-20.04
runs-on:
group: Reth
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down Expand Up @@ -104,7 +105,8 @@ jobs:
fail-fast: false
needs: prepare
name: run
runs-on: ubuntu-20.04
runs-on:
group: Reth

steps:
- name: Download artifacts
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ name: integration
jobs:
test:
name: test (partition ${{ matrix.partition }}/${{ strategy.job-total }})
runs-on: ubuntu-20.04
runs-on:
group: Reth
strategy:
matrix:
partition: [1, 2, 3]
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
- name: Run tests
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info \
--release --locked --all-features --workspace --exclude examples --exclude ef-tests \
--locked --all-features --workspace --exclude examples --exclude ef-tests \
--partition hash:${{ matrix.partition }}/${{ strategy.job-total }} \
-E 'kind(test)'
Expand All @@ -67,7 +68,8 @@ jobs:
name: sync / 100k blocks
# Only run sync tests in merge groups
if: github.event_name == 'merge_group'
runs-on: ubuntu-20.04
runs-on:
group: Reth
env:
RUST_LOG: info,sync=error
steps:
Expand Down Expand Up @@ -95,7 +97,8 @@ jobs:
integration-success:
if: always()
name: integration success
runs-on: ubuntu-20.04
runs-on:
group: Reth
needs: [test]
steps:
- name: Decide whether the needed jobs succeeded or failed
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ name: unit
jobs:
test:
name: test (partition ${{ matrix.partition }}/${{ strategy.job-total }})
runs-on: ubuntu-20.04
runs-on:
group: Reth
strategy:
matrix:
partition: [1, 2, 3, 4, 5]
Expand All @@ -40,7 +41,7 @@ jobs:
- name: Run tests
run: |
cargo llvm-cov nextest --lcov --output-path lcov.info \
--release --locked --all-features --workspace --exclude examples --exclude ef-tests \
--locked --all-features --workspace --exclude examples --exclude ef-tests \
--partition hash:${{ matrix.partition }}/${{ strategy.job-total }} \
-E 'kind(lib)' -E 'kind(bin)' -E 'kind(proc-macro)'
Expand All @@ -53,7 +54,8 @@ jobs:

eth-blockchain:
name: ethereum / state tests (stable)
runs-on: ubuntu-20.04
runs-on:
group: Reth
env:
RUST_LOG: info,sync=error
steps:
Expand Down Expand Up @@ -85,7 +87,8 @@ jobs:

doc-test:
name: rustdoc
runs-on: ubuntu-20.04
runs-on:
group: Reth
steps:
- uses: actions/checkout@v3
- name: Install toolchain
Expand Down

0 comments on commit 12582e4

Please sign in to comment.