From 2f8159fa4d42e962004ede9109625f05552b166c Mon Sep 17 00:00:00 2001 From: maskpp Date: Wed, 30 Oct 2024 20:17:12 +0800 Subject: [PATCH] update git workflows --- .github/workflows/bench.yml | 2 +- .github/workflows/book.yml | 4 ++-- .github/workflows/deny.yml | 4 ++-- .github/workflows/integration.yml | 9 ++------- .github/workflows/lint.yml | 6 +----- .github/workflows/unit.yml | 6 +++--- 6 files changed, 11 insertions(+), 20 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 9291f7a6cf20..802186a9c331 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -4,7 +4,7 @@ on: pull_request: merge_group: push: - branches: [main] + branches: [v1.1.0-taiko] env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 56d5c427466e..56900378fe6b 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -4,9 +4,9 @@ name: book on: push: - branches: [main] + branches: [v1.1.0-taiko] pull_request: - branches: [main] + branches: [v1.1.0-taiko] merge_group: jobs: diff --git a/.github/workflows/deny.yml b/.github/workflows/deny.yml index 519b1bf38abe..d5ede5940b8e 100644 --- a/.github/workflows/deny.yml +++ b/.github/workflows/deny.yml @@ -4,10 +4,10 @@ name: deny on: push: - branches: [main] + branches: [v1.1.0-taiko] paths: [Cargo.lock] pull_request: - branches: [main] + branches: [v1.1.0-taiko] paths: [Cargo.lock] merge_group: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index a57411744939..31d95698917e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -6,7 +6,7 @@ on: pull_request: merge_group: push: - branches: [main] + branches: [v1.1.0-taiko] env: CARGO_TERM_COLOR: always @@ -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 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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c758f6945a05..9f7dfdef9d4b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ on: pull_request: merge_group: push: - branches: [main] + branches: [v1.1.0-taiko] env: CARGO_TERM_COLOR: always @@ -19,8 +19,6 @@ jobs: include: - binary: reth network: ethereum - - binary: op-reth - network: optimism steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@clippy @@ -83,8 +81,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 a5d42a85d208..1ba703306713 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -6,7 +6,7 @@ on: pull_request: merge_group: push: - branches: [main] + branches: [v1.1.0-taiko] env: CARGO_TERM_COLOR: always @@ -26,7 +26,7 @@ jobs: strategy: matrix: partition: [1, 2] - network: ["ethereum", "optimism"] + network: ["ethereum"] timeout-minutes: 30 steps: - uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - network: ["ethereum", "optimism"] + network: ["ethereum"] steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable