ClickHouse/docs/en/development/continuous-integration.md

163 lines
7.2 KiB
Markdown
Raw Normal View History

2020-08-20 19:44:00 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/development/continuous-integration
sidebar_position: 62
sidebar_label: Continuous Integration Checks
2022-08-28 15:58:59 +00:00
title: Continuous Integration Checks
description: When you submit a pull request, some automated checks are ran for your code by the ClickHouse continuous integration (CI) system
2020-08-20 19:44:00 +00:00
---
2021-11-01 05:09:11 +00:00
When you submit a pull request, some automated checks are ran for your code by
the ClickHouse [continuous integration (CI) system](tests.md#test-automation).
This happens after a repository maintainer (someone from ClickHouse team) has
screened your code and added the `can be tested` label to your pull request.
The results of the checks are listed on the GitHub pull request page as
described in the [GitHub checks
documentation](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-status-checks).
If a check is failing, you might be required to fix it. This page gives an
overview of checks you may encounter, and what you can do to fix them.
If it looks like the check failure is not related to your changes, it may be
some transient failure or an infrastructure problem. Push an empty commit to
the pull request to restart the CI checks:
2020-08-13 18:45:55 +00:00
```
git reset
git commit --allow-empty
git push
```
2021-11-01 05:09:11 +00:00
If you are not sure what to do, ask a maintainer for help.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Merge With Master
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Verifies that the PR can be merged to master. If not, it will fail with the
2022-06-03 11:50:17 +00:00
message `Cannot fetch mergecommit`. To fix this check, resolve the conflict as
2021-11-01 05:09:11 +00:00
described in the [GitHub
documentation](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github),
or merge the `master` branch to your pull request branch using git.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Docs check
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Tries to build the ClickHouse documentation website. It can fail if you changed
something in the documentation. Most probable reason is that some cross-link in
the documentation is wrong. Go to the check report and look for `ERROR` and `WARNING` messages.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Description Check
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Check that the description of your pull request conforms to the template
[PULL_REQUEST_TEMPLATE.md](https://github.com/ClickHouse/ClickHouse/blob/master/.github/PULL_REQUEST_TEMPLATE.md).
You have to specify a changelog category for your change (e.g., Bug Fix), and
2022-08-26 19:49:26 +00:00
write a user-readable message describing the change for [CHANGELOG.md](../whats-new/changelog/index.md)
2020-08-13 18:45:55 +00:00
2022-06-02 13:01:59 +00:00
## Push To DockerHub
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Builds docker images used for build and tests, then pushes them to DockerHub.
2020-08-20 19:44:00 +00:00
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Marker Check
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
This check means that the CI system started to process the pull request. When it has 'pending' status, it means that not all checks have been started yet. After all checks have been started, it changes status to 'success'.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Style Check
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Performs some simple regex-based checks of code style, using the [`utils/check-style/check-style`](https://github.com/ClickHouse/ClickHouse/blob/master/utils/check-style/check-style) binary (note that it can be run locally).
If it fails, fix the style errors following the [code style guide](style.md).
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Fast Test
Normally this is the first check that is ran for a PR. It builds ClickHouse and
runs most of [stateless functional tests](tests.md#functional-tests), omitting
some. If it fails, further checks are not started until it is fixed. Look at
the report to see which tests fail, then reproduce the failure locally as
described [here](tests.md#functional-test-locally).
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
#### Status Page Files
- `runlog.out.log` is the general log that includes all other logs.
2020-08-13 18:45:55 +00:00
- `test_log.txt`
2021-11-01 05:09:11 +00:00
- `submodule_log.txt` contains the messages about cloning and checkouting needed submodules.
2020-08-13 18:45:55 +00:00
- `stderr.log`
- `stdout.log`
- `clickhouse-server.log`
- `clone_log.txt`
- `install_log.txt`
- `clickhouse-server.err.log`
- `build_log.txt`
2021-11-01 05:09:11 +00:00
- `cmake_log.txt` contains messages about the C/C++ and Linux flags check.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
#### Status Page Columns
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
- *Test name* contains the name of the test (without the path e.g. all types of tests will be stripped to the name).
- *Test status* -- one of _Skipped_, _Success_, or _Fail_.
- *Test time, sec.* -- empty on this test.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Build Check {#build-check}
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
Builds ClickHouse in various configurations for use in further steps. You have to fix the builds that fail. Build logs often has enough information to fix the error, but you might have to reproduce the failure locally. The `cmake` options can be found in the build log, grepping for `cmake`. Use these options and follow the [general build process](../development/build.md).
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
### Report Details
2020-08-13 18:45:55 +00:00
2023-02-20 22:46:10 +00:00
- **Compiler**: `clang-15`, optionally with the name of a target platform
2020-08-13 18:45:55 +00:00
- **Build type**: `Debug` or `RelWithDebInfo` (cmake).
2021-11-01 05:09:11 +00:00
- **Sanitizer**: `none` (without sanitizers), `address` (ASan), `memory` (MSan), `undefined` (UBSan), or `thread` (TSan).
- **Status**: `success` or `fail`
- **Build log**: link to the building and files copying log, useful when build failed.
2020-08-13 18:45:55 +00:00
- **Build time**.
2021-11-01 05:09:11 +00:00
- **Artifacts**: build result files (with `XXX` being the server version e.g. `20.8.1.4344`).
- `clickhouse-client_XXX_amd64.deb`
2021-10-27 12:27:28 +00:00
- `clickhouse-common-static-dbg_XXX[+asan, +msan, +ubsan, +tsan]_amd64.deb`
- `clickhouse-common-staticXXX_amd64.deb`
- `clickhouse-server_XXX_amd64.deb`
2021-11-01 05:09:11 +00:00
- `clickhouse`: Main built binary.
2021-10-27 12:27:28 +00:00
- `clickhouse-odbc-bridge`
2021-11-01 05:09:11 +00:00
- `unit_tests_dbms`: GoogleTest binary with ClickHouse unit tests.
2023-01-09 00:58:42 +00:00
- `performance.tar.zst`: Special package for performance tests.
2020-08-13 18:45:55 +00:00
2020-08-20 19:44:00 +00:00
2021-11-01 05:09:11 +00:00
## Special Build Check
Performs static analysis and code style checks using `clang-tidy`. The report is similar to the [build check](#build-check). Fix the errors found in the build log.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Functional Stateless Tests
Runs [stateless functional tests](tests.md#functional-tests) for ClickHouse
binaries built in various configurations -- release, debug, with sanitizers,
etc. Look at the report to see which tests fail, then reproduce the failure
locally as described [here](tests.md#functional-test-locally). Note that you
have to use the correct build configuration to reproduce -- a test might fail
under AddressSanitizer but pass in Debug. Download the binary from [CI build
checks page](../development/build.md#you-dont-have-to-build-clickhouse), or build it locally.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Functional Stateful Tests
2022-04-11 05:01:34 +00:00
Runs [stateful functional tests](tests.md#functional-tests). Treat them in the same way as the functional stateless tests. The difference is that they require `hits` and `visits` tables from the [clickstream dataset](../getting-started/example-datasets/metrica.md) to run.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Integration Tests
Runs [integration tests](tests.md#integration-tests).
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Stress Test
Runs stateless functional tests concurrently from several clients to detect
concurrency-related errors. If it fails:
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
* Fix all other test failures first;
* Look at the report to find the server logs and check them for possible causes
of error.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Compatibility Check
Checks that `clickhouse` binary runs on distributions with old libc versions. If it fails, ask a maintainer for help.
2020-08-13 18:45:55 +00:00
2020-08-20 19:44:00 +00:00
## AST Fuzzer
2021-11-01 05:09:11 +00:00
Runs randomly generated queries to catch program errors. If it fails, ask a maintainer for help.
2020-08-13 18:45:55 +00:00
2021-11-01 05:09:11 +00:00
## Performance Tests
Measure changes in query performance. This is the longest check that takes just below 6 hours to run. The performance test report is described in detail [here](https://github.com/ClickHouse/ClickHouse/tree/master/docker/test/performance-comparison#how-to-read-the-report).