From 7de2cdb6e16b98cd38a00ee865aab58669467e01 Mon Sep 17 00:00:00 2001 From: maskpp Date: Wed, 30 Oct 2024 20:25:46 +0800 Subject: [PATCH] disable optimism workflows --- .github/workflows/integration.yml | 7 +------ .github/workflows/lint.yml | 6 ------ .github/workflows/unit.yml | 10 +--------- .github/workflows/windows.yml | 2 -- 4 files changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 82bd5705a320..907b529322f0 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -25,7 +25,7 @@ jobs: RUST_BACKTRACE: 1 strategy: matrix: - network: ["ethereum", "optimism"] + network: ["ethereum"] timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fd71a8c636e4..f2999ccdac9f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: "" @@ -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 }} @@ -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 diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index defd9a6f535d..dddf5295ca61 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -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 @@ -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 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 03c491b368a6..67d40893e670 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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