Skip to content

Commit fc4c7ce

Browse files
Set timeouts for all CI workflows (#1200)
* Set timeouts for all CI workflows Signed-off-by: Shah, Karan <[email protected]> * forgot to add this too Signed-off-by: Shah, Karan <[email protected]> --------- Signed-off-by: Shah, Karan <[email protected]>
1 parent a509cd6 commit fc4c7ce

14 files changed

+22
-3
lines changed

.github/workflows/double_ws_export.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
build:
2020
if: github.event.pull_request.draft == false
2121
runs-on: 'ubuntu-latest'
22+
timeout-minutes: 15
2223

2324
steps:
2425
- uses: actions/checkout@v3

.github/workflows/experimental_workflow_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
build:
1515
if: (github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name, 'workflow_interface'))
1616
runs-on: ubuntu-latest
17+
timeout-minutes: 15
1718

1819
steps:
1920
- uses: actions/checkout@v3

.github/workflows/gandlf.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
build:
2020
if: github.event.pull_request.draft == false
2121
runs-on: ubuntu-latest
22+
timeout-minutes: 15
2223

2324
steps:
2425
- uses: actions/checkout@v3

.github/workflows/hadolint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
build:
1616
if: github.event.pull_request.draft == false
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 15
1819

1920
steps:
2021
- uses: actions/checkout@v3

.github/workflows/pki.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
test_insecure_client:
2020
if: github.event.pull_request.draft == false
2121
runs-on: ubuntu-latest
22+
timeout-minutes: 15
2223

2324
steps:
2425
- uses: actions/checkout@v3

.github/workflows/pytest_coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
build:
2121
if: github.event.pull_request.draft == false
2222
runs-on: ubuntu-latest
23+
timeout-minutes: 15
2324

2425
steps:
2526
- uses: actions/checkout@v3

.github/workflows/straggler-handling.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
matrix:
2323
os: ['ubuntu-latest', 'windows-latest']
2424
runs-on: ${{ matrix.os }}
25+
timeout-minutes: 15
2526

2627
steps:
2728
- uses: actions/checkout@v3

.github/workflows/task_runner_e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
test_with_tls:
3434
name: tr_tls
3535
runs-on: ubuntu-22.04
36-
timeout-minutes: 120 # 2 hours
36+
timeout-minutes: 15
3737
strategy:
3838
matrix:
3939
# There are open issues for some of the models, so excluding them for now:
@@ -100,7 +100,7 @@ jobs:
100100
test_with_non_tls:
101101
name: tr_non_tls
102102
runs-on: ubuntu-22.04
103-
timeout-minutes: 120 # 2 hours
103+
timeout-minutes: 15
104104
strategy:
105105
matrix:
106106
# Testing non TLS scenario only for torch_cnn_mnist model and python 3.10
@@ -167,7 +167,7 @@ jobs:
167167
test_with_no_client_auth:
168168
name: tr_no_client_auth
169169
runs-on: ubuntu-22.04
170-
timeout-minutes: 120 # 2 hours
170+
timeout-minutes: 15
171171
strategy:
172172
matrix:
173173
# Testing non TLS scenario only for torch_cnn_mnist model and python 3.10

.github/workflows/taskrunner.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
os: ['ubuntu-latest', 'windows-latest']
2424
python-version: ['3.8','3.9','3.10','3.11']
2525
runs-on: ${{ matrix.os }}
26+
timeout-minutes: 15
27+
2628
steps:
2729
- uses: actions/checkout@v3
2830
- name: Set up Python

.github/workflows/taskrunner_eden_pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
matrix:
1919
os: ['ubuntu-latest', 'windows-latest']
2020
runs-on: ${{ matrix.os }}
21+
timeout-minutes: 15
2122

2223
steps:
2324
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)