Skip to content

Commit f6de8f3

Browse files
authored
Merge pull request #318 from Altinity/customizations/23.8.4-draft
23.8.4 Make builds and tests possible on Altinity's infra
2 parents d4d1e7b + 92ff59c commit f6de8f3

106 files changed

Lines changed: 2019 additions & 7836 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
@@ -487,13 +487,13 @@ jobs:
487487
with:
488488
clear-repository: true
489489
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
490-
- name: Check docker clickhouse/clickhouse-server building
490+
- name: Check docker altinityinfra/clickhouse-server building
491491
run: |
492492
cd "$GITHUB_WORKSPACE/tests/ci"
493493
python3 docker_server.py --release-type head --no-push \
494-
--image-repo clickhouse/clickhouse-server --image-path docker/server
494+
--image-repo altinityinfra/clickhouse-server --image-path docker/server
495495
python3 docker_server.py --release-type head --no-push \
496-
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
496+
--image-repo altinityinfra/clickhouse-keeper --image-path docker/keeper
497497
- name: Cleanup
498498
if: always()
499499
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 & 176 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
@@ -963,13 +963,13 @@ jobs:
963963
with:
964964
clear-repository: true
965965
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
966-
- name: Check docker clickhouse/clickhouse-server building
966+
- name: Check docker altinityinfra/clickhouse-server building
967967
run: |
968968
cd "$GITHUB_WORKSPACE/tests/ci"
969969
python3 docker_server.py --release-type head \
970-
--image-repo clickhouse/clickhouse-server --image-path docker/server
970+
--image-repo altinityinfra/clickhouse-server --image-path docker/server
971971
python3 docker_server.py --release-type head \
972-
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
972+
--image-repo altinityinfra/clickhouse-keeper --image-path docker/keeper
973973
- name: Cleanup
974974
if: always()
975975
run: |

0 commit comments

Comments
 (0)