Skip to content

Commit a3b7bbb

Browse files
committed
Merge remote-tracking branch 'altinity/customizations/23.3.8' into customizations/23.3.13
2 parents 25635e2 + d24ca35 commit a3b7bbb

143 files changed

Lines changed: 2638 additions & 7734 deletions

File tree

Some content is hidden

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

.github/retry.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
# Execute command until exitcode is 0 or
3+
# maximum number of retries is reached
4+
# Example:
5+
# ./retry <retries> <delay> <command>
6+
retries=$1
7+
delay=$2
8+
command="${@:3}"
9+
exitcode=0
10+
try=0
11+
until [ "$try" -ge $retries ]
12+
do
13+
echo "$command"
14+
eval "$command"
15+
exitcode=$?
16+
if [ $exitcode -eq 0 ]; then
17+
break
18+
fi
19+
try=$((try+1))
20+
sleep $2
21+
done
22+
exit $exitcode

.github/workflows/backport_branches.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,13 +468,13 @@ jobs:
468468
with:
469469
clear-repository: true
470470
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
471-
- name: Check docker clickhouse/clickhouse-server building
471+
- name: Check docker altinityinfra/clickhouse-server building
472472
run: |
473473
cd "$GITHUB_WORKSPACE/tests/ci"
474474
python3 docker_server.py --release-type head --no-push \
475-
--image-repo clickhouse/clickhouse-server --image-path docker/server
475+
--image-repo altinityinfra/clickhouse-server --image-path docker/server
476476
python3 docker_server.py --release-type head --no-push \
477-
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
477+
--image-repo altinityinfra/clickhouse-keeper --image-path docker/keeper
478478
- name: Cleanup
479479
if: always()
480480
run: |

.github/workflows/cherry_pick.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/docs_check.yml

Lines changed: 0 additions & 174 deletions
This file was deleted.

.github/workflows/jepsen.yml

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -860,13 +860,13 @@ jobs:
860860
with:
861861
clear-repository: true
862862
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
863-
- name: Check docker clickhouse/clickhouse-server building
863+
- name: Check docker altinityinfra/clickhouse-server building
864864
run: |
865865
cd "$GITHUB_WORKSPACE/tests/ci"
866866
python3 docker_server.py --release-type head \
867-
--image-repo clickhouse/clickhouse-server --image-path docker/server
867+
--image-repo altinityinfra/clickhouse-server --image-path docker/server
868868
python3 docker_server.py --release-type head \
869-
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
869+
--image-repo altinityinfra/clickhouse-keeper --image-path docker/keeper
870870
- name: Cleanup
871871
if: always()
872872
run: |

0 commit comments

Comments
 (0)