2023-11-06 17:59:13 +00:00
|
|
|
# yamllint disable rule:comments-indentation
|
2022-08-31 09:50:47 +00:00
|
|
|
name: ReleaseBranchCI
|
2021-12-15 19:47:08 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
# Force the stdout and stderr streams to be unbuffered
|
|
|
|
PYTHONUNBUFFERED: 1
|
|
|
|
|
2021-11-22 08:33:52 +00:00
|
|
|
on: # yamllint disable-line rule:truthy
|
|
|
|
push:
|
|
|
|
branches:
|
2022-01-19 06:38:55 +00:00
|
|
|
# 22.1 and 22.10
|
2022-01-18 16:34:05 +00:00
|
|
|
- '2[1-9].[1-9][0-9]'
|
|
|
|
- '2[1-9].[1-9]'
|
2022-01-19 06:38:55 +00:00
|
|
|
|
2021-11-22 08:33:52 +00:00
|
|
|
jobs:
|
2022-01-07 13:21:30 +00:00
|
|
|
DockerHubPushAarch64:
|
2022-01-24 14:55:18 +00:00
|
|
|
runs-on: [self-hosted, style-checker-aarch64]
|
2022-01-07 13:21:30 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-12-20 10:24:27 +00:00
|
|
|
with:
|
|
|
|
clear-repository: true
|
2022-01-07 13:21:30 +00:00
|
|
|
- name: Images check
|
|
|
|
run: |
|
2022-01-13 18:06:35 +00:00
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
2022-01-07 13:21:30 +00:00
|
|
|
python3 docker_images_check.py --suffix aarch64
|
|
|
|
- name: Upload images files to artifacts
|
2022-12-19 20:02:35 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-01-07 13:21:30 +00:00
|
|
|
with:
|
|
|
|
name: changed_images_aarch64
|
|
|
|
path: ${{ runner.temp }}/docker_images_check/changed_images_aarch64.json
|
|
|
|
DockerHubPushAmd64:
|
|
|
|
runs-on: [self-hosted, style-checker]
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-12-20 10:24:27 +00:00
|
|
|
with:
|
|
|
|
clear-repository: true
|
2022-01-07 13:21:30 +00:00
|
|
|
- name: Images check
|
|
|
|
run: |
|
2022-01-13 18:06:35 +00:00
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
2022-01-07 13:21:30 +00:00
|
|
|
python3 docker_images_check.py --suffix amd64
|
|
|
|
- name: Upload images files to artifacts
|
2022-12-19 20:02:35 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-01-07 13:21:30 +00:00
|
|
|
with:
|
|
|
|
name: changed_images_amd64
|
|
|
|
path: ${{ runner.temp }}/docker_images_check/changed_images_amd64.json
|
2021-11-22 08:33:52 +00:00
|
|
|
DockerHubPush:
|
2022-01-07 13:21:30 +00:00
|
|
|
needs: [DockerHubPushAmd64, DockerHubPushAarch64]
|
2021-11-22 08:33:52 +00:00
|
|
|
runs-on: [self-hosted, style-checker]
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-12-20 10:24:27 +00:00
|
|
|
with:
|
|
|
|
clear-repository: true
|
2023-09-08 06:42:56 +00:00
|
|
|
fetch-depth: 0 # to find ancestor merge commits necessary for finding proper docker tags
|
2023-09-20 19:22:53 +00:00
|
|
|
filter: tree:0
|
2022-01-07 13:21:30 +00:00
|
|
|
- name: Download changed aarch64 images
|
2022-12-19 20:02:35 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2022-01-07 13:21:30 +00:00
|
|
|
with:
|
|
|
|
name: changed_images_aarch64
|
|
|
|
path: ${{ runner.temp }}
|
|
|
|
- name: Download changed amd64 images
|
2022-12-19 20:02:35 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2022-01-07 13:21:30 +00:00
|
|
|
with:
|
|
|
|
name: changed_images_amd64
|
|
|
|
path: ${{ runner.temp }}
|
2021-11-22 08:33:52 +00:00
|
|
|
- name: Images check
|
|
|
|
run: |
|
2022-01-13 18:06:35 +00:00
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
2022-01-07 13:21:30 +00:00
|
|
|
python3 docker_manifests_merge.py --suffix amd64 --suffix aarch64
|
2021-11-22 08:33:52 +00:00
|
|
|
- name: Upload images files to artifacts
|
2022-12-19 20:02:35 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-11-22 08:33:52 +00:00
|
|
|
with:
|
|
|
|
name: changed_images
|
2022-01-07 13:21:30 +00:00
|
|
|
path: ${{ runner.temp }}/changed_images.json
|
2023-03-01 10:37:47 +00:00
|
|
|
CompatibilityCheckX86:
|
2021-11-22 08:33:52 +00:00
|
|
|
needs: [BuilderDebRelease]
|
2023-11-11 00:02:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Compatibility check X86
|
|
|
|
runner_type: style-checker
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 compatibility_check.py --check-name "Compatibility check (amd64)" --check-glibc --check-distributions
|
2023-03-01 10:37:47 +00:00
|
|
|
CompatibilityCheckAarch64:
|
|
|
|
needs: [BuilderDebAarch64]
|
2023-11-11 00:02:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Compatibility check X86
|
|
|
|
runner_type: style-checker
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 compatibility_check.py --check-name "Compatibility check (aarch64)" --check-glibc
|
2021-11-22 08:33:52 +00:00
|
|
|
#########################################################################################
|
|
|
|
#################################### ORDINARY BUILDS ####################################
|
|
|
|
#########################################################################################
|
|
|
|
BuilderDebRelease:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_release
|
|
|
|
checkout_depth: 0
|
2021-12-17 13:22:40 +00:00
|
|
|
BuilderDebAarch64:
|
2022-01-13 17:21:53 +00:00
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_aarch64
|
|
|
|
checkout_depth: 0
|
2021-11-22 08:33:52 +00:00
|
|
|
BuilderDebAsan:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_asan
|
2021-11-22 08:33:52 +00:00
|
|
|
BuilderDebUBsan:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_ubsan
|
2021-11-22 08:33:52 +00:00
|
|
|
BuilderDebTsan:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_tsan
|
2021-11-22 08:33:52 +00:00
|
|
|
BuilderDebMsan:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_msan
|
2021-11-22 08:33:52 +00:00
|
|
|
BuilderDebDebug:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: package_debug
|
2022-09-05 13:07:11 +00:00
|
|
|
BuilderBinDarwin:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: binary_darwin
|
|
|
|
checkout_depth: 0
|
2022-09-05 13:07:11 +00:00
|
|
|
BuilderBinDarwinAarch64:
|
|
|
|
needs: [DockerHubPush]
|
2023-11-06 17:59:13 +00:00
|
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
|
|
with:
|
|
|
|
build_name: binary_darwin_aarch64
|
|
|
|
checkout_depth: 0
|
2021-11-22 08:33:52 +00:00
|
|
|
############################################################################################
|
2022-07-08 11:17:41 +00:00
|
|
|
##################################### Docker images #######################################
|
|
|
|
############################################################################################
|
|
|
|
DockerServerImages:
|
|
|
|
needs:
|
|
|
|
- BuilderDebRelease
|
|
|
|
- BuilderDebAarch64
|
|
|
|
runs-on: [self-hosted, style-checker]
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-07-08 11:17:41 +00:00
|
|
|
with:
|
2022-12-20 10:24:27 +00:00
|
|
|
clear-repository: true
|
2022-07-08 11:17:41 +00:00
|
|
|
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
|
2023-10-17 17:21:08 +00:00
|
|
|
filter: tree:0
|
2022-07-08 11:17:41 +00:00
|
|
|
- name: Check docker clickhouse/clickhouse-server building
|
|
|
|
run: |
|
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
2023-03-07 12:35:00 +00:00
|
|
|
python3 docker_server.py --release-type head --no-push \
|
|
|
|
--image-repo clickhouse/clickhouse-server --image-path docker/server
|
2023-03-30 16:07:40 +00:00
|
|
|
python3 docker_server.py --release-type head --no-push \
|
2022-07-08 11:17:41 +00:00
|
|
|
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
|
|
|
|
- name: Cleanup
|
|
|
|
if: always()
|
|
|
|
run: |
|
2022-09-17 18:24:56 +00:00
|
|
|
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
|
|
|
|
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
|
2022-07-08 11:17:41 +00:00
|
|
|
sudo rm -fr "$TEMP_PATH"
|
|
|
|
############################################################################################
|
2021-11-22 08:33:52 +00:00
|
|
|
##################################### BUILD REPORTER #######################################
|
|
|
|
############################################################################################
|
|
|
|
BuilderReport:
|
2023-11-12 09:12:04 +00:00
|
|
|
if: ${{ success() || failure() }}
|
2021-11-22 08:33:52 +00:00
|
|
|
needs:
|
|
|
|
- BuilderDebRelease
|
2021-12-17 13:22:40 +00:00
|
|
|
- BuilderDebAarch64
|
2021-11-22 08:33:52 +00:00
|
|
|
- BuilderDebAsan
|
|
|
|
- BuilderDebTsan
|
|
|
|
- BuilderDebUBsan
|
|
|
|
- BuilderDebMsan
|
|
|
|
- BuilderDebDebug
|
2023-11-12 09:12:04 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: ClickHouse build check
|
|
|
|
runner_type: style-checker
|
|
|
|
additional_envs: |
|
|
|
|
NEEDS_DATA<<NDENV
|
|
|
|
${{ toJSON(needs) }}
|
|
|
|
NDENV
|
|
|
|
run_command: |
|
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
|
|
|
python3 build_report_check.py "$CHECK_NAME"
|
2022-09-05 13:07:11 +00:00
|
|
|
BuilderSpecialReport:
|
2023-11-12 09:12:04 +00:00
|
|
|
if: ${{ success() || failure() }}
|
2022-09-05 13:07:11 +00:00
|
|
|
needs:
|
|
|
|
- BuilderBinDarwin
|
|
|
|
- BuilderBinDarwinAarch64
|
2023-11-12 09:12:04 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: ClickHouse special build check
|
|
|
|
runner_type: style-checker
|
|
|
|
additional_envs: |
|
|
|
|
NEEDS_DATA<<NDENV
|
|
|
|
${{ toJSON(needs) }}
|
|
|
|
NDENV
|
|
|
|
run_command: |
|
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
|
|
|
python3 build_report_check.py "$CHECK_NAME"
|
2022-11-07 20:28:05 +00:00
|
|
|
MarkReleaseReady:
|
|
|
|
needs:
|
|
|
|
- BuilderBinDarwin
|
|
|
|
- BuilderBinDarwinAarch64
|
|
|
|
- BuilderDebRelease
|
|
|
|
- BuilderDebAarch64
|
|
|
|
runs-on: [self-hosted, style-checker]
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-12-20 10:24:27 +00:00
|
|
|
with:
|
|
|
|
clear-repository: true
|
2022-11-07 20:28:05 +00:00
|
|
|
- name: Mark Commit Release Ready
|
|
|
|
run: |
|
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
|
|
|
python3 mark_release_ready.py
|
2023-02-03 22:40:56 +00:00
|
|
|
############################################################################################
|
|
|
|
#################################### INSTALL PACKAGES ######################################
|
|
|
|
############################################################################################
|
|
|
|
InstallPackagesTestRelease:
|
|
|
|
needs: [BuilderDebRelease]
|
2023-11-09 11:21:47 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
2023-11-09 09:59:29 +00:00
|
|
|
with:
|
|
|
|
test_name: Install packages (amd64)
|
|
|
|
runner_type: style-checker
|
2023-11-09 11:21:47 +00:00
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 install_check.py "$CHECK_NAME"
|
2023-02-03 22:40:56 +00:00
|
|
|
InstallPackagesTestAarch64:
|
2023-02-20 14:23:24 +00:00
|
|
|
needs: [BuilderDebAarch64]
|
2023-11-09 11:21:47 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
2023-11-09 09:59:29 +00:00
|
|
|
with:
|
|
|
|
test_name: Install packages (arm64)
|
|
|
|
runner_type: style-checker-aarch64
|
2023-11-09 11:21:47 +00:00
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 install_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
##############################################################################################
|
|
|
|
########################### FUNCTIONAl STATELESS TESTS #######################################
|
|
|
|
##############################################################################################
|
|
|
|
FunctionalStatelessTestRelease:
|
|
|
|
needs: [BuilderDebRelease]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (release)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-12-20 11:40:27 +00:00
|
|
|
FunctionalStatelessTestAarch64:
|
|
|
|
needs: [BuilderDebAarch64]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (aarch64)
|
|
|
|
runner_type: func-tester-aarch64
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
|
|
|
FunctionalStatelessTestAsan:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebAsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (asan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
batches: 4
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
|
|
|
FunctionalStatelessTestTsan:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebTsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (tsan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
batches: 5
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
|
|
|
FunctionalStatelessTestUBsan:
|
|
|
|
needs: [BuilderDebUBsan]
|
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (ubsan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
batches: 2
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
|
|
|
FunctionalStatelessTestMsan:
|
|
|
|
needs: [BuilderDebMsan]
|
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (msan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
batches: 6
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
|
|
|
FunctionalStatelessTestDebug:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebDebug]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateless tests (debug)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=10800
|
|
|
|
batches: 5
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
##############################################################################################
|
|
|
|
############################ FUNCTIONAl STATEFUL TESTS #######################################
|
|
|
|
##############################################################################################
|
|
|
|
FunctionalStatefulTestRelease:
|
|
|
|
needs: [BuilderDebRelease]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (release)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-12-20 11:40:27 +00:00
|
|
|
FunctionalStatefulTestAarch64:
|
|
|
|
needs: [BuilderDebAarch64]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (aarch64)
|
|
|
|
runner_type: func-tester-aarch64
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
FunctionalStatefulTestAsan:
|
|
|
|
needs: [BuilderDebAsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (asan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
FunctionalStatefulTestTsan:
|
|
|
|
needs: [BuilderDebTsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (tsan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
FunctionalStatefulTestMsan:
|
|
|
|
needs: [BuilderDebMsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (msan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
FunctionalStatefulTestUBsan:
|
|
|
|
needs: [BuilderDebUBsan]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (ubsan)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
FunctionalStatefulTestDebug:
|
|
|
|
needs: [BuilderDebDebug]
|
2023-11-09 15:04:18 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stateful tests (debug)
|
|
|
|
runner_type: func-tester
|
|
|
|
additional_envs: |
|
|
|
|
KILL_TIMEOUT=3600
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|
2021-11-22 08:33:52 +00:00
|
|
|
##############################################################################################
|
|
|
|
######################################### STRESS TESTS #######################################
|
|
|
|
##############################################################################################
|
|
|
|
StressTestAsan:
|
|
|
|
needs: [BuilderDebAsan]
|
2023-11-10 11:38:52 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stress test (asan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 stress_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
StressTestTsan:
|
|
|
|
needs: [BuilderDebTsan]
|
2023-11-10 11:38:52 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stress test (tsan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 stress_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
StressTestMsan:
|
|
|
|
needs: [BuilderDebMsan]
|
2023-11-10 11:38:52 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stress test (msan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 stress_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
StressTestUBsan:
|
|
|
|
needs: [BuilderDebUBsan]
|
2023-11-10 11:38:52 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stress test (ubsan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 stress_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
StressTestDebug:
|
|
|
|
needs: [BuilderDebDebug]
|
2023-11-10 11:38:52 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Stress test (debug)
|
|
|
|
runner_type: stress-tester
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 stress_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
#############################################################################################
|
|
|
|
############################# INTEGRATION TESTS #############################################
|
|
|
|
#############################################################################################
|
2023-11-10 12:25:38 +00:00
|
|
|
IntegrationTestsAsan:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebAsan]
|
2023-11-10 12:25:38 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Integration tests (asan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
batches: 4
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 integration_test_check.py "$CHECK_NAME"
|
|
|
|
IntegrationTestsAnalyzerAsan:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebAsan]
|
2023-11-10 12:25:38 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Integration tests (asan, analyzer)
|
|
|
|
runner_type: stress-tester
|
|
|
|
batches: 6
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 integration_test_check.py "$CHECK_NAME"
|
|
|
|
IntegrationTestsTsan:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebTsan]
|
2023-11-10 12:25:38 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Integration tests (tsan)
|
|
|
|
runner_type: stress-tester
|
|
|
|
batches: 6
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 integration_test_check.py "$CHECK_NAME"
|
|
|
|
IntegrationTestsRelease:
|
2021-12-20 08:58:52 +00:00
|
|
|
needs: [BuilderDebRelease]
|
2023-11-10 12:25:38 +00:00
|
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
|
|
with:
|
|
|
|
test_name: Integration tests (release)
|
|
|
|
runner_type: stress-tester
|
|
|
|
batches: 4
|
|
|
|
run_command: |
|
|
|
|
cd "$REPO_COPY/tests/ci"
|
|
|
|
python3 integration_test_check.py "$CHECK_NAME"
|
2021-11-22 08:33:52 +00:00
|
|
|
FinishCheck:
|
|
|
|
needs:
|
|
|
|
- DockerHubPush
|
2022-07-08 11:17:41 +00:00
|
|
|
- DockerServerImages
|
2021-11-22 08:33:52 +00:00
|
|
|
- BuilderReport
|
2022-09-08 08:33:24 +00:00
|
|
|
- BuilderSpecialReport
|
2022-11-07 20:28:05 +00:00
|
|
|
- MarkReleaseReady
|
2023-11-09 15:04:18 +00:00
|
|
|
- FunctionalStatelessTestDebug
|
2021-11-22 08:33:52 +00:00
|
|
|
- FunctionalStatelessTestRelease
|
2021-12-20 11:40:27 +00:00
|
|
|
- FunctionalStatelessTestAarch64
|
2023-11-09 15:04:18 +00:00
|
|
|
- FunctionalStatelessTestAsan
|
|
|
|
- FunctionalStatelessTestTsan
|
|
|
|
- FunctionalStatelessTestMsan
|
2021-11-22 08:33:52 +00:00
|
|
|
- FunctionalStatelessTestUBsan
|
|
|
|
- FunctionalStatefulTestDebug
|
|
|
|
- FunctionalStatefulTestRelease
|
2021-12-20 11:40:27 +00:00
|
|
|
- FunctionalStatefulTestAarch64
|
2021-11-22 08:33:52 +00:00
|
|
|
- FunctionalStatefulTestAsan
|
|
|
|
- FunctionalStatefulTestTsan
|
|
|
|
- FunctionalStatefulTestMsan
|
|
|
|
- FunctionalStatefulTestUBsan
|
|
|
|
- StressTestDebug
|
|
|
|
- StressTestAsan
|
|
|
|
- StressTestTsan
|
|
|
|
- StressTestMsan
|
|
|
|
- StressTestUBsan
|
2023-11-10 12:25:38 +00:00
|
|
|
- IntegrationTestsAsan
|
|
|
|
- IntegrationTestsTsan
|
|
|
|
- IntegrationTestsRelease
|
2023-03-01 10:37:47 +00:00
|
|
|
- CompatibilityCheckX86
|
|
|
|
- CompatibilityCheckAarch64
|
2021-11-22 08:33:52 +00:00
|
|
|
runs-on: [self-hosted, style-checker]
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2022-12-23 16:54:19 +00:00
|
|
|
uses: ClickHouse/checkout@v1
|
2022-12-20 10:24:27 +00:00
|
|
|
with:
|
|
|
|
clear-repository: true
|
2021-11-22 08:33:52 +00:00
|
|
|
- name: Finish label
|
|
|
|
run: |
|
2022-01-13 18:06:35 +00:00
|
|
|
cd "$GITHUB_WORKSPACE/tests/ci"
|
2021-11-22 08:33:52 +00:00
|
|
|
python3 finish_check.py
|