ClickHouse/.github/workflows/pull_request.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

1469 lines
51 KiB
YAML
Raw Normal View History

# yamllint disable rule:comments-indentation
name: PullRequestCI
env:
# Force the stdout and stderr streams to be unbuffered
PYTHONUNBUFFERED: 1
2022-03-31 11:11:49 +00:00
on: # yamllint disable-line rule:truthy
2021-09-10 09:12:11 +00:00
pull_request:
2021-09-15 13:31:57 +00:00
types:
- synchronize
- reopened
- opened
2021-09-10 09:12:11 +00:00
branches:
- master
paths-ignore:
- '**.md'
2022-05-24 10:58:27 +00:00
- 'docker/docs/**'
- 'docs/**'
2022-12-19 15:21:14 +00:00
- 'utils/check-style/aspell-ignore/**'
2023-09-26 19:50:54 +00:00
- 'tests/ci/docs_check.py'
- '.github/workflows/docs_check.yml'
2021-12-14 12:46:19 +00:00
##########################################################################################
##################################### SMALL CHECKS #######################################
##########################################################################################
2021-11-15 14:41:15 +00:00
jobs:
2021-09-15 12:10:19 +00:00
CheckLabels:
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
# Run the first check always, even if the CI is cancelled
if: ${{ always() }}
2021-09-15 12:10:19 +00:00
steps:
2021-09-15 13:02:09 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-09-15 12:10:19 +00:00
- name: Labels check
2021-10-25 14:36:21 +00:00
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
2021-10-25 14:36:21 +00:00
python3 run_check.py
2022-01-18 21:33:53 +00:00
PythonUnitTests:
runs-on: [self-hosted, style-checker]
steps:
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2022-01-18 21:33:53 +00:00
- name: Python unit tests
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
echo "Testing the main ci directory"
python3 -m unittest discover -s . -p 'test_*.py'
for dir in *_lambda/; do
echo "Testing $dir"
python3 -m unittest discover -s "$dir" -p 'test_*.py'
done
DockerHubPushAarch64:
needs: CheckLabels
runs-on: [self-hosted, style-checker-aarch64]
steps:
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
- name: Images check
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
python3 docker_images_check.py --suffix aarch64
- name: Upload images files to artifacts
uses: actions/upload-artifact@v3
with:
name: changed_images_aarch64
path: ${{ runner.temp }}/docker_images_check/changed_images_aarch64.json
DockerHubPushAmd64:
2021-09-15 12:10:19 +00:00
needs: CheckLabels
2021-10-21 11:09:15 +00:00
runs-on: [self-hosted, style-checker]
2021-09-15 12:10:19 +00:00
steps:
2021-09-16 10:11:35 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-09-15 12:10:19 +00:00
- name: Images check
2021-10-25 14:36:21 +00:00
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
python3 docker_images_check.py --suffix amd64
- name: Upload images files to artifacts
uses: actions/upload-artifact@v3
with:
name: changed_images_amd64
path: ${{ runner.temp }}/docker_images_check/changed_images_amd64.json
DockerHubPush:
2022-01-18 21:33:53 +00:00
needs: [DockerHubPushAmd64, DockerHubPushAarch64, PythonUnitTests]
runs-on: [self-hosted, style-checker]
steps:
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
fetch-depth: 0 # to find ancestor merge commits necessary for finding proper docker tags
filter: tree:0
- name: Download changed aarch64 images
uses: actions/download-artifact@v3
with:
name: changed_images_aarch64
path: ${{ runner.temp }}
- name: Download changed amd64 images
uses: actions/download-artifact@v3
with:
name: changed_images_amd64
path: ${{ runner.temp }}
- name: Images check
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
python3 docker_manifests_merge.py --suffix amd64 --suffix aarch64
2021-09-15 18:26:48 +00:00
- name: Upload images files to artifacts
uses: actions/upload-artifact@v3
2021-09-15 18:26:48 +00:00
with:
name: changed_images
path: ${{ runner.temp }}/changed_images.json
2021-12-14 12:46:19 +00:00
StyleCheck:
needs: DockerHubPush
runs-on: [self-hosted, style-checker]
2022-11-28 18:58:36 +00:00
# We need additional `&& ! cancelled()` to have the job being able to cancel
if: ${{ success() || failure() || ( always() && ! cancelled() ) }}
2021-12-14 12:46:19 +00:00
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{ runner.temp }}/style_check
ROBOT_CLICKHOUSE_SSH_KEY<<RCSK
${{secrets.ROBOT_CLICKHOUSE_SSH_KEY}}
RCSK
2021-12-09 18:09:46 +00:00
EOF
2021-12-14 12:46:19 +00:00
- name: Download changed images
# even if artifact does not exist, e.g. on `do not test` label or failed Docker job
continue-on-error: true
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
name: changed_images
2021-12-09 18:09:46 +00:00
path: ${{ env.TEMP_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Style Check
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
2021-12-14 12:46:19 +00:00
python3 style_check.py
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
FastTest:
needs: DockerHubPush
runs-on: [self-hosted, builder]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/fasttest
REPO_COPY=${{runner.temp}}/fasttest/ClickHouse
CACHES_PATH=${{runner.temp}}/../ccaches
EOF
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2022-04-13 11:45:54 +00:00
- name: Download changed images
uses: actions/download-artifact@v3
2022-04-13 11:45:54 +00:00
with:
name: changed_images
path: ${{ env.TEMP_PATH }}
2021-12-14 12:46:19 +00:00
- name: Fast Test
run: |
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci" && python3 fast_test_check.py
2021-12-14 12:46:19 +00:00
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH" "$CACHES_PATH"
CompatibilityCheckX86:
2021-12-14 12:46:19 +00:00
needs: [BuilderDebRelease]
runs-on: [self-hosted, style-checker]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/compatibility_check
REPO_COPY=${{runner.temp}}/compatibility_check/ClickHouse
REPORTS_PATH=${{runner.temp}}/reports_dir
EOF
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
- name: CompatibilityCheckX86
2021-12-14 12:46:19 +00:00
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
2023-03-03 11:19:05 +00:00
cd "$REPO_COPY/tests/ci" && python3 compatibility_check.py --check-name "Compatibility check (amd64)" --check-glibc --check-distributions
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
CompatibilityCheckAarch64:
needs: [BuilderDebAarch64]
runs-on: [self-hosted, style-checker]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/compatibility_check
REPO_COPY=${{runner.temp}}/compatibility_check/ClickHouse
REPORTS_PATH=${{runner.temp}}/reports_dir
EOF
- name: Check out repository code
uses: ClickHouse/checkout@v1
with:
clear-repository: true
- name: Download json reports
uses: actions/download-artifact@v3
with:
path: ${{ env.REPORTS_PATH }}
- name: CompatibilityCheckAarch64
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci" && python3 compatibility_check.py --check-name "Compatibility check (aarch64)" --check-glibc
2021-12-14 12:46:19 +00:00
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
#########################################################################################
#################################### ORDINARY BUILDS ####################################
#########################################################################################
BuilderDebRelease:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_release
checkout_depth: 0
2021-12-08 21:52:00 +00:00
BuilderDebAarch64:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_aarch64
checkout_depth: 0
BuilderBinRelease:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_release
2021-12-14 12:46:19 +00:00
BuilderDebAsan:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_asan
2021-12-14 12:46:19 +00:00
BuilderDebUBsan:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_ubsan
2021-12-14 12:46:19 +00:00
BuilderDebTsan:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_tsan
2021-12-14 12:46:19 +00:00
BuilderDebMsan:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_msan
2021-12-14 12:46:19 +00:00
BuilderDebDebug:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: package_debug
2021-12-14 12:46:19 +00:00
##########################################################################################
##################################### SPECIAL BUILDS #####################################
##########################################################################################
2022-06-28 20:29:17 +00:00
BuilderBinClangTidy:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_tidy
2021-12-14 12:46:19 +00:00
BuilderBinDarwin:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_darwin
2021-12-14 12:46:19 +00:00
BuilderBinAarch64:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_aarch64
2021-12-14 12:46:19 +00:00
BuilderBinFreeBSD:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_freebsd
2021-12-14 12:46:19 +00:00
BuilderBinDarwinAarch64:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_darwin_aarch64
2021-12-14 12:46:19 +00:00
BuilderBinPPC64:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_ppc64le
BuilderBinAmd64Compat:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_amd64_compat
2022-09-21 13:09:24 +00:00
BuilderBinAarch64V80Compat:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_aarch64_v80compat
2022-08-14 07:45:38 +00:00
BuilderBinRISCV64:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_riscv64
2023-08-09 00:44:01 +00:00
BuilderBinS390X:
needs: [FastTest, StyleCheck]
uses: ./.github/workflows/reusable_build.yml
with:
build_name: binary_s390x
2021-12-14 12:46:19 +00:00
############################################################################################
2022-03-31 11:11:49 +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-03-31 11:11:49 +00:00
with:
clear-repository: true
fetch-depth: 0 # It MUST BE THE SAME for all dependencies and the job itself
filter: tree:0
2022-03-31 11:11:49 +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
python3 docker_server.py --release-type head --no-push \
2022-03-31 11:11:49 +00:00
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
2022-03-31 11:11:49 +00:00
sudo rm -fr "$TEMP_PATH"
############################################################################################
2021-12-14 12:46:19 +00:00
##################################### BUILD REPORTER #######################################
############################################################################################
BuilderReport:
needs:
- BuilderBinRelease
- BuilderDebAarch64
2021-12-14 12:46:19 +00:00
- BuilderDebAsan
- BuilderDebDebug
- BuilderDebMsan
- BuilderDebRelease
2021-12-14 12:46:19 +00:00
- BuilderDebTsan
- BuilderDebUBsan
runs-on: [self-hosted, style-checker]
2021-12-22 08:13:04 +00:00
if: ${{ success() || failure() }}
2021-12-14 12:46:19 +00:00
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
2022-07-21 10:27:45 +00:00
CHECK_NAME=ClickHouse build check
2022-04-06 12:27:29 +00:00
REPORTS_PATH=${{runner.temp}}/reports_dir
TEMP_PATH=${{runner.temp}}/report_check
2022-05-25 13:15:11 +00:00
NEEDS_DATA_PATH=${{runner.temp}}/needs.json
2021-12-09 18:09:46 +00:00
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Report Builder
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
2022-05-25 13:15:11 +00:00
cat > "$NEEDS_DATA_PATH" << 'EOF'
${{ toJSON(needs) }}
EOF
cd "$GITHUB_WORKSPACE/tests/ci"
2022-05-25 13:15:11 +00:00
python3 build_report_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
BuilderSpecialReport:
needs:
- BuilderBinAarch64
- BuilderBinDarwin
2021-12-14 12:46:19 +00:00
- BuilderBinDarwinAarch64
- BuilderBinFreeBSD
2021-12-14 12:46:19 +00:00
- BuilderBinPPC64
2022-08-14 07:45:38 +00:00
- BuilderBinRISCV64
2023-08-09 00:44:01 +00:00
- BuilderBinS390X
- BuilderBinAmd64Compat
2022-09-21 13:09:24 +00:00
- BuilderBinAarch64V80Compat
2022-06-28 20:29:17 +00:00
- BuilderBinClangTidy
2021-12-14 12:46:19 +00:00
runs-on: [self-hosted, style-checker]
2021-12-22 08:13:04 +00:00
if: ${{ success() || failure() }}
2021-12-14 12:46:19 +00:00
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/report_check
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-07-21 10:27:45 +00:00
CHECK_NAME=ClickHouse special build check
2022-05-25 13:15:11 +00:00
NEEDS_DATA_PATH=${{runner.temp}}/needs.json
2021-12-09 18:09:46 +00:00
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Report Builder
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
2022-05-25 13:15:11 +00:00
cat > "$NEEDS_DATA_PATH" << 'EOF'
${{ toJSON(needs) }}
EOF
cd "$GITHUB_WORKSPACE/tests/ci"
2022-05-25 13:15:11 +00:00
python3 build_report_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2023-01-25 21:59:40 +00:00
############################################################################################
#################################### INSTALL PACKAGES ######################################
############################################################################################
2023-02-01 22:33:05 +00:00
InstallPackagesTestRelease:
2023-01-25 21:59:40 +00:00
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
2023-11-09 09:59:29 +00:00
with:
test_name: Install packages (amd64)
runner_type: style-checker
run_command: |
cd "$REPO_COPY/tests/ci"
python3 install_check.py "$CHECK_NAME"
2023-02-01 22:33:05 +00:00
InstallPackagesTestAarch64:
needs: [BuilderDebAarch64]
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
run_command: |
cd "$REPO_COPY/tests/ci"
python3 install_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
##############################################################################################
########################### FUNCTIONAl STATELESS TESTS #######################################
##############################################################################################
FunctionalStatelessTestRelease:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (release)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=10800
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
FunctionalStatelessTestReleaseDatabaseReplicated:
2022-11-18 16:38:17 +00:00
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (release, DatabaseReplicated)
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"
2021-12-14 12:46:19 +00:00
FunctionalStatelessTestReleaseWideParts:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (release, wide parts enabled)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=10800
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
FunctionalStatelessTestReleaseAnalyzer:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (release, analyzer)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=10800
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
FunctionalStatelessTestReleaseS3:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (release, s3 storage)
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"
FunctionalStatelessTestS3Debug:
2021-12-14 12:46:19 +00:00
needs: [BuilderDebDebug]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (debug, s3 storage)
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"
FunctionalStatelessTestS3Tsan:
needs: [BuilderDebTsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (tsan, s3 storage)
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"
FunctionalStatelessTestAarch64:
needs: [BuilderDebAarch64]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests (aarch64)
runner_type: func-tester-aarch64
additional_envs: |
KILL_TIMEOUT=10800
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
FunctionalStatelessTestAsan:
needs: [BuilderDebAsan]
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:
needs: [BuilderDebTsan]
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"
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"
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"
FunctionalStatelessTestDebug:
needs: [BuilderDebDebug]
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-12-14 12:46:19 +00:00
FunctionalStatelessTestFlakyCheck:
needs: [BuilderDebAsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateless tests flaky check (asan)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2022-03-18 12:36:45 +00:00
TestsBugfixCheck:
needs: [CheckLabels, StyleCheck]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: tests bugfix validate check
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
2022-03-18 12:36:45 +00:00
TEMP_PATH="${TEMP_PATH}/integration" \
REPORTS_PATH="${REPORTS_PATH}/integration" \
python3 integration_test_check.py "Integration $CHECK_NAME" \
--validate-bugfix --post-commit-status=file || echo 'ignore exit code'
2022-03-18 12:36:45 +00:00
TEMP_PATH="${TEMP_PATH}/stateless" \
REPORTS_PATH="${REPORTS_PATH}/stateless" \
python3 functional_test_check.py "Stateless $CHECK_NAME" "$KILL_TIMEOUT" \
--validate-bugfix --post-commit-status=file || echo 'ignore exit code'
2022-03-18 12:36:45 +00:00
python3 bugfix_validate_check.py "${TEMP_PATH}/stateless/functional_commit_status.tsv" "${TEMP_PATH}/integration/integration_commit_status.tsv"
2021-12-14 12:46:19 +00:00
##############################################################################################
############################ FUNCTIONAl STATEFUL TESTS #######################################
##############################################################################################
FunctionalStatefulTestRelease:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (release)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
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]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (aarch64)
runner_type: func-tester-aarch64
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
FunctionalStatefulTestAsan:
needs: [BuilderDebAsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (asan)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
FunctionalStatefulTestTsan:
needs: [BuilderDebTsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (tsan)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
FunctionalStatefulTestMsan:
needs: [BuilderDebMsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (msan)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
FunctionalStatefulTestUBsan:
needs: [BuilderDebUBsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (ubsan)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
FunctionalStatefulTestDebug:
needs: [BuilderDebDebug]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (debug)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
# Parallel replicas
FunctionalStatefulTestDebugParallelReplicas:
needs: [BuilderDebDebug]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (debug, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
FunctionalStatefulTestUBsanParallelReplicas:
needs: [BuilderDebUBsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (ubsan, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
FunctionalStatefulTestMsanParallelReplicas:
needs: [BuilderDebMsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (msan, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
FunctionalStatefulTestTsanParallelReplicas:
needs: [BuilderDebTsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (tsan, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
FunctionalStatefulTestAsanParallelReplicas:
needs: [BuilderDebAsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (asan, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2023-02-03 13:34:18 +00:00
FunctionalStatefulTestReleaseParallelReplicas:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Stateful tests (release, ParallelReplicas)
runner_type: func-tester
additional_envs: |
KILL_TIMEOUT=3600
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 functional_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +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
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +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
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +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
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +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
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +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
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 stress_check.py "$CHECK_NAME"
##############################################################################################
######################################### UPGRADE CHECK ######################################
##############################################################################################
2023-01-03 20:06:43 +00:00
UpgradeCheckAsan:
needs: [BuilderDebAsan]
2023-11-10 11:38:52 +00:00
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Upgrade check (asan)
runner_type: stress-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 upgrade_check.py "$CHECK_NAME"
2023-01-03 20:06:43 +00:00
UpgradeCheckTsan:
needs: [BuilderDebTsan]
2023-11-10 11:38:52 +00:00
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Upgrade check (tsan)
runner_type: stress-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 upgrade_check.py "$CHECK_NAME"
2023-01-03 20:06:43 +00:00
UpgradeCheckMsan:
needs: [BuilderDebMsan]
2023-11-10 11:38:52 +00:00
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Upgrade check (msan)
runner_type: stress-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 upgrade_check.py "$CHECK_NAME"
2023-01-03 20:06:43 +00:00
UpgradeCheckDebug:
needs: [BuilderDebDebug]
2023-11-10 11:38:52 +00:00
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Upgrade check (debug)
runner_type: stress-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 upgrade_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
##############################################################################################
##################################### AST FUZZERS ############################################
##############################################################################################
ASTFuzzerTestAsan:
needs: [BuilderDebAsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: AST fuzzer (asan)
runner_type: fuzzer-unit-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 ast_fuzzer_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
ASTFuzzerTestTsan:
needs: [BuilderDebTsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: AST fuzzer (tsan)
runner_type: fuzzer-unit-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 ast_fuzzer_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
ASTFuzzerTestUBSan:
needs: [BuilderDebUBsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: AST fuzzer (ubsan)
runner_type: fuzzer-unit-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 ast_fuzzer_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
ASTFuzzerTestMSan:
needs: [BuilderDebMsan]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: AST fuzzer (msan)
runner_type: fuzzer-unit-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 ast_fuzzer_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
ASTFuzzerTestDebug:
needs: [BuilderDebDebug]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: AST fuzzer (debug)
runner_type: fuzzer-unit-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 ast_fuzzer_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
#############################################################################################
############################# INTEGRATION TESTS #############################################
#############################################################################################
2023-11-10 12:25:38 +00:00
IntegrationTestsAsan:
2021-12-14 12:46:19 +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:
needs: [BuilderDebAsan]
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:
2022-11-18 16:38:17 +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:
2022-11-18 16:38:17 +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-12-14 12:46:19 +00:00
IntegrationTestsFlakyCheck:
needs: [BuilderDebAsan]
2023-11-10 12:25:38 +00:00
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Integration tests flaky check (asan)
runner_type: stress-tester
batches: 1
run_command: |
cd "$REPO_COPY/tests/ci"
python3 integration_test_check.py "$CHECK_NAME"
2021-12-14 12:46:19 +00:00
#############################################################################################
#################################### UNIT TESTS #############################################
#############################################################################################
UnitTestsAsan:
needs: [BuilderDebAsan]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/unit_tests_asan
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-07-21 10:45:46 +00:00
CHECK_NAME=Unit tests (asan)
2021-12-09 18:09:46 +00:00
REPO_COPY=${{runner.temp}}/unit_tests_asan/ClickHouse
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Unit test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
2021-12-14 12:46:19 +00:00
python3 unit_tests_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
UnitTestsReleaseClang:
needs: [BuilderBinRelease]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/unit_tests_asan
REPORTS_PATH=${{runner.temp}}/reports_dir
2023-07-31 03:23:28 +00:00
CHECK_NAME=Unit tests (release)
2021-12-09 18:09:46 +00:00
REPO_COPY=${{runner.temp}}/unit_tests_asan/ClickHouse
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Unit test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
2021-12-14 12:46:19 +00:00
python3 unit_tests_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
UnitTestsTsan:
needs: [BuilderDebTsan]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
2021-12-09 18:09:46 +00:00
TEMP_PATH=${{runner.temp}}/unit_tests_tsan
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-07-21 10:45:46 +00:00
CHECK_NAME=Unit tests (tsan)
2021-12-09 18:09:46 +00:00
REPO_COPY=${{runner.temp}}/unit_tests_tsan/ClickHouse
EOF
- name: Download json reports
uses: actions/download-artifact@v3
with:
path: ${{ env.REPORTS_PATH }}
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
- name: Unit test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
python3 unit_tests_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
UnitTestsMsan:
needs: [BuilderDebMsan]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/unit_tests_msan
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-07-21 10:45:46 +00:00
CHECK_NAME=Unit tests (msan)
2021-12-09 18:09:46 +00:00
REPO_COPY=${{runner.temp}}/unit_tests_msan/ClickHouse
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Unit test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
2021-12-14 12:46:19 +00:00
python3 unit_tests_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
UnitTestsUBsan:
needs: [BuilderDebUBsan]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
2021-12-09 18:09:46 +00:00
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/unit_tests_ubsan
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-07-21 10:45:46 +00:00
CHECK_NAME=Unit tests (ubsan)
2021-12-09 18:09:46 +00:00
REPO_COPY=${{runner.temp}}/unit_tests_ubsan/ClickHouse
EOF
2021-12-14 12:46:19 +00:00
- name: Download json reports
uses: actions/download-artifact@v3
2021-12-14 12:46:19 +00:00
with:
2021-12-09 18:09:46 +00:00
path: ${{ env.REPORTS_PATH }}
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Unit test
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
2021-12-14 12:46:19 +00:00
python3 unit_tests_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2021-12-14 12:46:19 +00:00
#############################################################################################
#################################### PERFORMANCE TESTS ######################################
#############################################################################################
PerformanceComparisonX86:
needs: [BuilderDebRelease]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Performance Comparison
runner_type: stress-tester
batches: 4
run_command: |
cd "$REPO_COPY/tests/ci"
python3 performance_comparison_check.py "$CHECK_NAME"
PerformanceComparisonAarch:
2022-05-24 19:47:49 +00:00
needs: [BuilderDebAarch64]
uses: ./.github/workflows/reusable_test.yml
with:
test_name: Performance Comparison Aarch64
runner_type: func-tester-aarch64
batches: 4
run_command: |
cd "$REPO_COPY/tests/ci"
python3 performance_comparison_check.py "$CHECK_NAME"
2022-10-17 14:46:50 +00:00
##############################################################################################
###################################### SQLANCER FUZZERS ######################################
##############################################################################################
SQLancerTestRelease:
needs: [BuilderDebRelease]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/sqlancer_release
REPORTS_PATH=${{runner.temp}}/reports_dir
CHECK_NAME=SQLancer (release)
REPO_COPY=${{runner.temp}}/sqlancer_release/ClickHouse
EOF
- name: Download json reports
uses: actions/download-artifact@v3
2022-10-17 14:46:50 +00:00
with:
path: ${{ env.REPORTS_PATH }}
2022-10-24 08:25:21 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2022-10-24 08:25:21 +00:00
- name: SQLancer
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
python3 sqlancer_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
SQLancerTestDebug:
needs: [BuilderDebDebug]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/sqlancer_debug
REPORTS_PATH=${{runner.temp}}/reports_dir
2022-10-24 11:28:43 +00:00
CHECK_NAME=SQLancer (debug)
2022-10-24 08:25:21 +00:00
REPO_COPY=${{runner.temp}}/sqlancer_debug/ClickHouse
EOF
- name: Download json reports
uses: actions/download-artifact@v3
2022-10-24 08:25:21 +00:00
with:
path: ${{ env.REPORTS_PATH }}
2022-10-17 14:46:50 +00:00
- name: Check out repository code
2022-12-23 16:54:19 +00:00
uses: ClickHouse/checkout@v1
with:
clear-repository: true
2022-10-17 14:46:50 +00:00
- name: SQLancer
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
python3 sqlancer_check.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2022-05-27 12:37:11 +00:00
#############################################################################################
###################################### JEPSEN TESTS #########################################
#############################################################################################
Jepsen:
# This is special test NOT INCLUDED in FinishCheck
# When it's skipped, all dependent tasks will be skipped too.
# DO NOT add it there
if: contains(github.event.pull_request.labels.*.name, 'jepsen-test')
2022-05-27 13:31:21 +00:00
needs: [BuilderBinRelease]
2022-05-27 14:15:34 +00:00
uses: ./.github/workflows/jepsen.yml
2021-12-14 12:46:19 +00:00
FinishCheck:
needs:
- StyleCheck
- DockerHubPush
2022-03-31 11:11:49 +00:00
- DockerServerImages
2021-12-14 12:46:19 +00:00
- CheckLabels
- BuilderReport
- BuilderSpecialReport
2021-12-14 12:46:19 +00:00
- FastTest
- FunctionalStatelessTestDebug
2021-12-14 12:46:19 +00:00
- FunctionalStatelessTestRelease
- FunctionalStatelessTestReleaseDatabaseReplicated
2021-12-14 12:46:19 +00:00
- FunctionalStatelessTestReleaseWideParts
2023-04-12 15:18:28 +00:00
- FunctionalStatelessTestReleaseAnalyzer
2021-12-20 11:40:27 +00:00
- FunctionalStatelessTestAarch64
- FunctionalStatelessTestAsan
- FunctionalStatelessTestTsan
- FunctionalStatelessTestMsan
- FunctionalStatelessTestUBsan
2021-12-14 12:46:19 +00:00
- FunctionalStatefulTestDebug
- FunctionalStatefulTestRelease
2021-12-20 11:40:27 +00:00
- FunctionalStatefulTestAarch64
2021-12-14 12:46:19 +00:00
- FunctionalStatefulTestAsan
- FunctionalStatefulTestTsan
- FunctionalStatefulTestMsan
- FunctionalStatefulTestUBsan
- FunctionalStatelessTestReleaseS3
- FunctionalStatelessTestS3Debug
- FunctionalStatelessTestS3Tsan
- FunctionalStatefulTestReleaseParallelReplicas
- FunctionalStatefulTestAsanParallelReplicas
- FunctionalStatefulTestTsanParallelReplicas
- FunctionalStatefulTestMsanParallelReplicas
- FunctionalStatefulTestUBsanParallelReplicas
- FunctionalStatefulTestDebugParallelReplicas
2021-12-14 12:46:19 +00:00
- StressTestDebug
- StressTestAsan
- StressTestTsan
- StressTestMsan
- StressTestUBsan
2023-11-10 11:38:52 +00:00
- UpgradeCheckAsan
- UpgradeCheckTsan
- UpgradeCheckMsan
- UpgradeCheckDebug
2021-12-14 12:46:19 +00:00
- ASTFuzzerTestDebug
- ASTFuzzerTestAsan
- ASTFuzzerTestTsan
- ASTFuzzerTestMSan
- ASTFuzzerTestUBSan
2023-11-10 12:25:38 +00:00
- IntegrationTestsAsan
- IntegrationTestsAnalyzerAsan
- IntegrationTestsTsan
- IntegrationTestsRelease
- IntegrationTestsFlakyCheck
- PerformanceComparisonX86
- PerformanceComparisonAarch
2021-12-14 12:46:19 +00:00
- UnitTestsAsan
- UnitTestsTsan
- UnitTestsMsan
- UnitTestsUBsan
- UnitTestsReleaseClang
- CompatibilityCheckX86
- CompatibilityCheckAarch64
2022-10-17 14:46:50 +00:00
- SQLancerTestRelease
2022-10-21 19:43:06 +00:00
- SQLancerTestDebug
2021-12-14 12:46:19 +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
with:
clear-repository: true
2021-12-14 12:46:19 +00:00
- name: Finish label
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
2021-12-14 12:46:19 +00:00
python3 finish_check.py
2022-09-08 15:21:23 +00:00
python3 merge_pr.py --check-approved
2023-09-16 04:41:13 +00:00
#############################################################################################
####################################### libFuzzer ###########################################
#############################################################################################
libFuzzer:
if: contains(github.event.pull_request.labels.*.name, 'libFuzzer')
needs: [DockerHubPush, StyleCheck]
uses: ./.github/workflows/libfuzzer.yml
##############################################################################################
############################ SQLLOGIC TEST ###################################################
##############################################################################################
2023-04-16 10:11:35 +00:00
SQLLogicTestRelease:
needs: [BuilderDebRelease]
runs-on: [self-hosted, func-tester]
2021-12-08 21:52:00 +00:00
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
2023-04-16 10:11:35 +00:00
TEMP_PATH=${{runner.temp}}/sqllogic_debug
REPORTS_PATH=${{runner.temp}}/reports_dir
CHECK_NAME=Sqllogic test (release)
REPO_COPY=${{runner.temp}}/sqllogic_debug/ClickHouse
KILL_TIMEOUT=10800
2021-12-08 21:52:00 +00:00
EOF
2023-04-16 10:11:35 +00:00
- name: Download json reports
uses: actions/download-artifact@v2
2021-12-08 21:52:00 +00:00
with:
2023-04-16 10:11:35 +00:00
path: ${{ env.REPORTS_PATH }}
- name: Clear repository
2021-12-09 18:09:46 +00:00
run: |
2023-04-16 10:11:35 +00:00
sudo rm -fr "$GITHUB_WORKSPACE" && mkdir "$GITHUB_WORKSPACE"
2021-12-14 12:46:19 +00:00
- name: Check out repository code
2023-04-16 10:11:35 +00:00
uses: actions/checkout@v2
- name: Sqllogic test
2021-12-14 12:46:19 +00:00
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
2023-04-16 10:11:35 +00:00
cd "$REPO_COPY/tests/ci"
python3 sqllogic_test.py "$CHECK_NAME" "$KILL_TIMEOUT"
2021-12-14 12:46:19 +00:00
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"
2023-07-19 01:42:32 +00:00
##############################################################################################
##################################### SQL TEST ###############################################
##############################################################################################
SQLTest:
needs: [BuilderDebRelease]
runs-on: [self-hosted, fuzzer-unit-tester]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
TEMP_PATH=${{runner.temp}}/sqltest
REPORTS_PATH=${{runner.temp}}/reports_dir
2023-08-02 18:05:39 +00:00
CHECK_NAME=SQLTest
2023-07-19 01:42:32 +00:00
REPO_COPY=${{runner.temp}}/sqltest/ClickHouse
EOF
- name: Download json reports
uses: actions/download-artifact@v3
with:
path: ${{ env.REPORTS_PATH }}
- name: Check out repository code
uses: ClickHouse/checkout@v1
with:
clear-repository: true
- name: SQLTest
run: |
sudo rm -fr "$TEMP_PATH"
mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY/tests/ci"
python3 sqltest.py "$CHECK_NAME"
- name: Cleanup
if: always()
run: |
docker ps --quiet | xargs --no-run-if-empty docker kill ||:
docker ps --all --quiet | xargs --no-run-if-empty docker rm -f ||:
sudo rm -fr "$TEMP_PATH"