You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/02/07 04:12:10 UTC

[incubator-seatunnel] branch dev updated: [SeaTunnel#1181] Add timeout option for each workflow in case some of them cannot finish normally (#1182)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 98697dd  [SeaTunnel#1181] Add timeout option for each workflow in case some of them cannot finish normally (#1182)
98697dd is described below

commit 98697ddfa6fba23efb428cd5e0017c47f721d854
Author: Benedict Jin <as...@apache.org>
AuthorDate: Mon Feb 7 12:12:03 2022 +0800

    [SeaTunnel#1181] Add timeout option for each workflow in case some of them cannot finish normally (#1182)
---
 .github/workflows/backend.yml | 2 ++
 .github/workflows/codeql.yaml | 3 ++-
 .github/workflows/docker.yml  | 1 +
 3 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml
index 62c3e8d..a658845 100644
--- a/.github/workflows/backend.yml
+++ b/.github/workflows/backend.yml
@@ -30,6 +30,7 @@ concurrency:
 jobs:
   check-license:
     runs-on: ubuntu-latest
+    timeout-minutes: 30
     steps:
       - uses: actions/checkout@v2
       - name: Check License Header
@@ -37,6 +38,7 @@ jobs:
   build:
     name: Build
     runs-on: ubuntu-latest
+    timeout-minutes: 30
     env:
       MAVEN_OPTS: -Xmx2G -Xms2G
     steps:
diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml
index 919f01f..948206a 100644
--- a/.github/workflows/codeql.yaml
+++ b/.github/workflows/codeql.yaml
@@ -24,6 +24,7 @@ jobs:
   analyze:
     name: Analyze
     runs-on: ubuntu-latest
+    timeout-minutes: 30
 
     strategy:
       fail-fast: false
@@ -51,4 +52,4 @@ jobs:
       - name: Autobuild
         uses: github/codeql-action/autobuild@v1
       - name: Perform CodeQL Analysis
-        uses: github/codeql-action/analyze@v1
\ No newline at end of file
+        uses: github/codeql-action/analyze@v1
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 887b82d..3f6123a 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -31,6 +31,7 @@ jobs:
   check:
     name: Spark
     runs-on: ubuntu-latest
+    timeout-minutes: 30
     steps:
       - uses: actions/checkout@v2
       - name: Set up JDK 1.8