Skip to content

Commit bab56d3

Browse files
committed
Merge remote-tracking branch 'upstream/main' into easier_access_to_shard_awareness_api
2 parents 6406e70 + f3d41c9 commit bab56d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+750
-345
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: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ env:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
# ccm requires Python 2 when creating a serverless cluster.
16+
# Python 2 is pre-installed on Ubuntu 20.04.
17+
runs-on: ubuntu-20.04
18+
timeout-minutes: 60
1619
steps:
1720
- uses: actions/checkout@v2
18-
- name: Setup Python 2.7
19-
uses: actions/setup-python@v2
20-
with:
21-
python-version: '2.7'
2221
- name: Install scylla-ccm
2322
run: pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
2423

.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

docs/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pristine: clean
4141
.PHONY: clean
4242
clean:
4343
rm -rf $(BUILDDIR)/*
44+
rm -rf $(SOURCEDIR)/*
4445
rm -f poetry.lock
4546

4647
# Generate output commands

docs/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[tool.poetry]
22
name = "sphinx-docs"
33
description = "ScyllaDB Documentation"
4-
version = "0.8.1"
4+
version = "0.8.2"
55
authors = ["ScyllaDB Documentation Contributors"]
66

77
[tool.poetry.dependencies]
88
python = "^3.7"
99
pyyaml = "6.0"
10-
pygments = "2.11.2"
10+
pygments = "2.15.1"
1111
recommonmark = "0.7.1"
1212
redirects_cli ="~0.1.2"
13-
sphinx-scylladb-theme = "~1.4.1"
14-
sphinx-sitemap = "2.2.0"
13+
sphinx-scylladb-theme = "~1.5.1"
14+
sphinx-sitemap = "2.5.0"
1515
sphinx-autobuild = "2021.3.14"
1616
Sphinx = "4.3.2"
1717
sphinx-multiversion-scylla = "~0.2.11"

0 commit comments

Comments
 (0)