Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: set reasonable timeouts for test jobs #10024

Merged
merged 1 commit into from
Aug 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
integration-tests:
name: Integration tests
runs-on: "n1-standard-32-netssd-preempt"
timeout-minutes: 45
env:
TC_CLOUD_TOKEN: ${{ secrets.TC_CLOUD_TOKEN }}
TC_CLOUD_CONCURRENCY: 4
Expand Down Expand Up @@ -64,6 +65,7 @@ jobs:
exporter-tests:
name: Exporter tests
runs-on: "n1-standard-8-netssd-preempt"
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3.4.1
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
matrix:
project: ${{ fromJson(needs.project-list.outputs.projects) }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3.4.1
Expand Down Expand Up @@ -143,6 +146,7 @@ jobs:
slow-unit-tests:
name: Slow unit tests
runs-on: "n1-standard-8-netssd-preempt"
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3.4.1
Expand Down Expand Up @@ -216,6 +220,7 @@ jobs:
java-randomized-tests:
name: Java randomized tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3.4.1
Expand All @@ -236,6 +241,7 @@ jobs:
go-client:
name: Go client tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down Expand Up @@ -264,6 +270,7 @@ jobs:
java-client:
name: Java client tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
# First, install dependencies with JDK 17
Expand Down