Skip to content

Commit a220ee5

Browse files
author
Erick Friis
authored
infra: add 20min timeout to ci steps (#28483)
1 parent c74f34c commit a220ee5

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

.github/workflows/_compile_integration_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
run:
2222
working-directory: ${{ inputs.working-directory }}
2323
runs-on: ubuntu-latest
24+
timeout-minutes: 20
2425
name: "poetry run pytest -m compile tests/integration_tests #${{ inputs.python-version }}"
2526
steps:
2627
- uses: actions/checkout@v4

.github/workflows/_lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
build:
2424
name: "make lint #${{ inputs.python-version }}"
2525
runs-on: ubuntu-latest
26+
timeout-minutes: 20
2627
steps:
2728
- uses: actions/checkout@v4
2829

.github/workflows/_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ jobs:
167167
- release-notes
168168
- test-pypi-publish
169169
runs-on: ubuntu-latest
170+
timeout-minutes: 20
170171
steps:
171172
- uses: actions/checkout@v4
172173

.github/workflows/_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
run:
2222
working-directory: ${{ inputs.working-directory }}
2323
runs-on: ubuntu-latest
24+
timeout-minutes: 20
2425
name: "make test #${{ inputs.python-version }}"
2526
steps:
2627
- uses: actions/checkout@v4

.github/workflows/_test_doc_imports.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17+
timeout-minutes: 20
1718
name: "check doc imports #${{ inputs.python-version }}"
1819
steps:
1920
- uses: actions/checkout@v4

.github/workflows/_test_pydantic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
run:
2727
working-directory: ${{ inputs.working-directory }}
2828
runs-on: ubuntu-latest
29+
timeout-minutes: 20
2930
name: "make test # pydantic: ~=${{ inputs.pydantic-version }}, python: ${{ inputs.python-version }}, "
3031
steps:
3132
- uses: actions/checkout@v4

.github/workflows/check_diffs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ jobs:
119119
job-configs: ${{ fromJson(needs.build.outputs.extended-tests) }}
120120
fail-fast: false
121121
runs-on: ubuntu-latest
122+
timeout-minutes: 20
122123
defaults:
123124
run:
124125
working-directory: ${{ matrix.job-configs.working-directory }}

.github/workflows/scheduled_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
if: github.repository_owner == 'langchain-ai' || github.event_name != 'schedule'
1414
name: Python ${{ matrix.python-version }} - ${{ matrix.working-directory }}
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 20
1617
strategy:
1718
fail-fast: false
1819
matrix:

0 commit comments

Comments
 (0)