From b381a959979e4322526e59b5b43fbaac186f695e Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Fri, 22 Sep 2023 20:53:54 +0200 Subject: [PATCH] extend ci timeout --- .github/workflows/book.yml | 5 +++++ .github/workflows/unit.yml | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index d099b25491d0..310b7454250f 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -10,6 +10,7 @@ jobs: test: runs-on: ubuntu-20.04 name: test + timeout-minutes: 60 steps: - uses: actions/checkout@v3 @@ -32,6 +33,7 @@ jobs: lint: runs-on: ubuntu-20.04 name: lint + timeout-minutes: 60 steps: - uses: actions/checkout@v3 @@ -49,6 +51,7 @@ jobs: build: runs-on: ubuntu-20.04 + timeout-minutes: 60 steps: - uses: actions/checkout@v3 with: @@ -120,6 +123,8 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} + timeout-minutes: 60 + steps: - name: Deploy to GitHub Pages id: deployment diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 6c89dca7160e..ba5f0ff53008 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -21,6 +21,7 @@ jobs: strategy: matrix: partition: [1, 2] + timeout-minutes: 60 steps: - name: Checkout sources uses: actions/checkout@v3 @@ -57,6 +58,7 @@ jobs: group: Reth env: RUST_LOG: info,sync=error + timeout-minutes: 60 steps: - name: Checkout sources uses: actions/checkout@v3 @@ -88,6 +90,7 @@ jobs: name: rustdoc runs-on: group: Reth + timeout-minutes: 60 steps: - uses: actions/checkout@v3 - name: Install toolchain @@ -101,6 +104,7 @@ jobs: name: unit success runs-on: ubuntu-20.04 needs: [test, eth-blockchain, doc-test] + timeout-minutes: 60 steps: - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1