Skip to content

Commit

Permalink
revert changes in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp committed Oct 31, 2024
1 parent 0f959fc commit 5e4e7fe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
RUST_BACKTRACE: 1
strategy:
matrix:
network: ["ethereum"]
network: ["ethereum", "optimism"]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
Expand All @@ -43,6 +43,11 @@ jobs:
--locked --features "asm-keccak ${{ matrix.network }}" \
--workspace --exclude example-exex-remote --exclude ef-tests \
-E "kind(test)"
- if: matrix.network == 'optimism'
name: Run tests
run: |
cargo nextest run \
--locked -p reth-node-optimism --features "optimism"
sync:
name: sync / 100k blocks
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
include:
- binary: reth
network: ethereum
- binary: op-reth
network: optimism
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@clippy
Expand Down Expand Up @@ -81,6 +83,8 @@ jobs:
include:
- binary: reth
network: ethereum
- binary: op-reth
network: optimism
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
partition: [1, 2]
network: ["ethereum"]
network: ["ethereum", "optimism"]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
network: ["ethereum"]
network: ["ethereum", "optimism"]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 5e4e7fe

Please sign in to comment.