Skip to content

Commit

Permalink
disable optimism workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp committed Oct 30, 2024
1 parent 9566810 commit 7de2cdb
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 23 deletions.
7 changes: 1 addition & 6 deletions .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", "optimism"]
network: ["ethereum"]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
Expand All @@ -43,11 +43,6 @@ jobs:
--locked --features "asm-keccak ${{ matrix.network }}" \
--workspace --exclude ef-tests \
-E "kind(test)"
- if: matrix.network == 'optimism'
name: Run tests
run: |
cargo nextest run \
--locked -p reth-optimism-node --features "optimism"
integration-success:
name: integration success
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
- type: ethereum
args: --bin reth --workspace
features: "ethereum asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs"
- type: optimism
args: --bin op-reth --workspace
features: "optimism asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs"
- type: book
args: --manifest-path book/sources/Cargo.toml --workspace --bins
features: ""
Expand Down Expand Up @@ -88,7 +85,6 @@ jobs:
with:
cache-on-failure: true
- run: cargo hack check --workspace --exclude op-reth
- run: cargo check -p op-reth --features "optimism"

msrv:
name: MSRV / ${{ matrix.network }}
Expand All @@ -99,8 +95,6 @@ jobs:
include:
- binary: reth
network: ethereum
- binary: op-reth
network: optimism
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ jobs:
args: --features "asm-keccak ethereum" --locked
partition: 2
total_partitions: 2
- type: optimism
args: --features "asm-keccak optimism" --locked
partition: 1
total_partitions: 2
- type: optimism
args: --features "asm-keccak optimism" --locked
partition: 2
total_partitions: 2
- type: book
args: --manifest-path book/sources/Cargo.toml
partition: 1
Expand Down Expand Up @@ -99,7 +91,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
network: ["ethereum", "optimism"]
network: ["ethereum"]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,3 @@ jobs:
cache-on-failure: true
- name: mingw-w64
run: sudo apt-get install -y mingw-w64
- name: Check OP-Reth
run: cargo check -p op-reth --features optimism --target x86_64-pc-windows-gnu

0 comments on commit 7de2cdb

Please sign in to comment.