Skip to content

Commit

Permalink
Merge pull request #734 from wprzytula/ci-with-timeouts
Browse files Browse the repository at this point in the history
CI: Bound all workflows with a timeout
  • Loading branch information
piodul authored Jun 7, 2023
2 parents 1c9d0e3 + 3623120 commit 5aeb080
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/authenticate_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
# PasswordAuthenticator
build:
timeout-minutes: 60
runs-on: ubuntu-latest
services:
scylladb:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
services:
scylladb:
image: scylladb/scylla
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cassandra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: Setup 3-node Cassandra cluster
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: Setup 3-node Scylla cluster
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: Setup Python 2.7
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,18 @@ env:
jobs:
tls:
runs-on: ubuntu-latest
timeout-minutes: 60
services:
scylladb:
image: scylladb/scylla-tls
ports:
- 9042:9042
- 9142:9142
options:
--health-cmd "cqlsh --debug"
--health-interval 5s
options:
--health-cmd "cqlsh --debug"
--health-interval 5s
--health-retries 10
env:
env:
working-directory: ./scylla
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 5aeb080

Please sign in to comment.