Skip to content

Commit 5aeb080

Browse files
authored
Merge pull request #734 from wprzytula/ci-with-timeouts
CI: Bound all workflows with a timeout
2 parents 1c9d0e3 + 3623120 commit 5aeb080

File tree

8 files changed

+12
-4
lines changed

8 files changed

+12
-4
lines changed

.github/workflows/authenticate_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313
jobs:
1414
# PasswordAuthenticator
1515
build:
16+
timeout-minutes: 60
1617
runs-on: ubuntu-latest
1718
services:
1819
scylladb:

.github/workflows/book.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: 30
1718
services:
1819
scylladb:
1920
image: scylladb/scylla

.github/workflows/cassandra.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: 60
1718
steps:
1819
- uses: actions/checkout@v2
1920
- name: Setup 3-node Cassandra cluster

.github/workflows/docs-pages.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
jobs:
1414
release:
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 10
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v3

.github/workflows/docs-pr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15+
timeout-minutes: 10
1516
steps:
1617
- name: Checkout
1718
uses: actions/checkout@v3

.github/workflows/rust.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 60
1819
steps:
1920
- uses: actions/checkout@v2
2021
- name: Setup 3-node Scylla cluster

.github/workflows/serverless.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 60
1617
steps:
1718
- uses: actions/checkout@v2
1819
- name: Setup Python 2.7

.github/workflows/tls.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ env:
1313
jobs:
1414
tls:
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 60
1617
services:
1718
scylladb:
1819
image: scylladb/scylla-tls
1920
ports:
2021
- 9042:9042
2122
- 9142:9142
22-
options:
23-
--health-cmd "cqlsh --debug"
24-
--health-interval 5s
23+
options:
24+
--health-cmd "cqlsh --debug"
25+
--health-interval 5s
2526
--health-retries 10
26-
env:
27+
env:
2728
working-directory: ./scylla
2829
steps:
2930
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)