mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Try to switch to llvm-12/clang-12
This commit is contained in:
parent
f967fa574c
commit
7e6cd00cee
@ -4,7 +4,7 @@ set -e
|
|||||||
#ccache -s # uncomment to display CCache statistics
|
#ccache -s # uncomment to display CCache statistics
|
||||||
mkdir -p /server/build_docker
|
mkdir -p /server/build_docker
|
||||||
cd /server/build_docker
|
cd /server/build_docker
|
||||||
cmake -G Ninja /server "-DCMAKE_C_COMPILER=$(command -v clang-11)" "-DCMAKE_CXX_COMPILER=$(command -v clang++-11)"
|
cmake -G Ninja /server "-DCMAKE_C_COMPILER=$(command -v clang-12)" "-DCMAKE_CXX_COMPILER=$(command -v clang++-12)"
|
||||||
|
|
||||||
# Set the number of build jobs to the half of number of virtual CPU cores (rounded up).
|
# Set the number of build jobs to the half of number of virtual CPU cores (rounded up).
|
||||||
# By default, ninja use all virtual CPU cores, that leads to very high memory consumption without much improvement in build time.
|
# By default, ninja use all virtual CPU cores, that leads to very high memory consumption without much improvement in build time.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# docker build -t yandex/clickhouse-binary-builder .
|
# docker build -t yandex/clickhouse-binary-builder .
|
||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=11
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=12
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install \
|
&& apt-get install \
|
||||||
@ -57,6 +57,11 @@ RUN cat /etc/resolv.conf \
|
|||||||
lld-11 \
|
lld-11 \
|
||||||
llvm-11 \
|
llvm-11 \
|
||||||
llvm-11-dev \
|
llvm-11-dev \
|
||||||
|
clang-12 \
|
||||||
|
clang-tidy-12 \
|
||||||
|
lld-12 \
|
||||||
|
llvm-12 \
|
||||||
|
llvm-12-dev \
|
||||||
libicu-dev \
|
libicu-dev \
|
||||||
libreadline-dev \
|
libreadline-dev \
|
||||||
ninja-build \
|
ninja-build \
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# docker build -t yandex/clickhouse-deb-builder .
|
# docker build -t yandex/clickhouse-deb-builder .
|
||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=11
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=12
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install ca-certificates lsb-release wget gnupg apt-transport-https \
|
&& apt-get install ca-certificates lsb-release wget gnupg apt-transport-https \
|
||||||
@ -36,6 +36,11 @@ RUN apt-get update \
|
|||||||
&& apt-get install \
|
&& apt-get install \
|
||||||
gcc-9 \
|
gcc-9 \
|
||||||
g++-9 \
|
g++-9 \
|
||||||
|
clang-12 \
|
||||||
|
clang-tidy-12 \
|
||||||
|
lld-12 \
|
||||||
|
llvm-12 \
|
||||||
|
llvm-12-dev \
|
||||||
clang-11 \
|
clang-11 \
|
||||||
clang-tidy-11 \
|
clang-tidy-11 \
|
||||||
lld-11 \
|
lld-11 \
|
||||||
|
@ -184,6 +184,7 @@ if __name__ == "__main__":
|
|||||||
parser.add_argument("--build-type", choices=("debug", ""), default="")
|
parser.add_argument("--build-type", choices=("debug", ""), default="")
|
||||||
parser.add_argument("--compiler", choices=("clang-10", "clang-10-darwin", "clang-10-aarch64", "clang-10-freebsd",
|
parser.add_argument("--compiler", choices=("clang-10", "clang-10-darwin", "clang-10-aarch64", "clang-10-freebsd",
|
||||||
"clang-11", "clang-11-darwin", "clang-11-aarch64", "clang-11-freebsd",
|
"clang-11", "clang-11-darwin", "clang-11-aarch64", "clang-11-freebsd",
|
||||||
|
"clang-12", "clang-12-darwin", "clang-12-aarch64", "clang-12-freebsd",
|
||||||
"gcc-9", "gcc-10"), default="gcc-9")
|
"gcc-9", "gcc-10"), default="gcc-9")
|
||||||
parser.add_argument("--sanitizer", choices=("address", "thread", "memory", "undefined", ""), default="")
|
parser.add_argument("--sanitizer", choices=("address", "thread", "memory", "undefined", ""), default="")
|
||||||
parser.add_argument("--unbundled", action="store_true")
|
parser.add_argument("--unbundled", action="store_true")
|
||||||
|
@ -22,7 +22,7 @@ ENV SHA=nosha
|
|||||||
ENV DATA="data"
|
ENV DATA="data"
|
||||||
|
|
||||||
CMD mkdir -p $BUILD_DIRECTORY && cd $BUILD_DIRECTORY && \
|
CMD mkdir -p $BUILD_DIRECTORY && cd $BUILD_DIRECTORY && \
|
||||||
cmake $SOURCE_DIRECTORY -DCMAKE_CXX_COMPILER=/usr/bin/clang\+\+-11 -DCMAKE_C_COMPILER=/usr/bin/clang-11 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON && \
|
cmake $SOURCE_DIRECTORY -DCMAKE_CXX_COMPILER=/usr/bin/clang\+\+-12 -DCMAKE_C_COMPILER=/usr/bin/clang-12 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON && \
|
||||||
mkdir -p $HTML_RESULT_DIRECTORY && \
|
mkdir -p $HTML_RESULT_DIRECTORY && \
|
||||||
$CODEGEN -b $BUILD_DIRECTORY -a -o $HTML_RESULT_DIRECTORY -p ClickHouse:$SOURCE_DIRECTORY:$SHA -d $DATA && \
|
$CODEGEN -b $BUILD_DIRECTORY -a -o $HTML_RESULT_DIRECTORY -p ClickHouse:$SOURCE_DIRECTORY:$SHA -d $DATA && \
|
||||||
cp -r $STATIC_DATA $HTML_RESULT_DIRECTORY/ &&\
|
cp -r $STATIC_DATA $HTML_RESULT_DIRECTORY/ &&\
|
||||||
|
@ -12,7 +12,7 @@ stage=${stage:-}
|
|||||||
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||||
echo "$script_dir"
|
echo "$script_dir"
|
||||||
repo_dir=ch
|
repo_dir=ch
|
||||||
BINARY_TO_DOWNLOAD=${BINARY_TO_DOWNLOAD:="clang-11_debug_none_bundled_unsplitted_disable_False_binary"}
|
BINARY_TO_DOWNLOAD=${BINARY_TO_DOWNLOAD:="clang-12_debug_none_bundled_unsplitted_disable_False_binary"}
|
||||||
|
|
||||||
function clone
|
function clone
|
||||||
{
|
{
|
||||||
|
@ -23,7 +23,7 @@ $ sudo apt-get install git cmake python ninja-build
|
|||||||
|
|
||||||
Or cmake3 instead of cmake on older systems.
|
Or cmake3 instead of cmake on older systems.
|
||||||
|
|
||||||
### Install clang-11 (recommended) {#install-clang-11}
|
### Install clang-12 (recommended) {#install-clang-12}
|
||||||
|
|
||||||
On Ubuntu/Debian you can use the automatic installation script (check [official webpage](https://apt.llvm.org/))
|
On Ubuntu/Debian you can use the automatic installation script (check [official webpage](https://apt.llvm.org/))
|
||||||
|
|
||||||
@ -33,16 +33,16 @@ sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
|||||||
|
|
||||||
For other Linux distribution - check the availability of the [prebuild packages](https://releases.llvm.org/download.html) or build clang [from sources](https://clang.llvm.org/get_started.html).
|
For other Linux distribution - check the availability of the [prebuild packages](https://releases.llvm.org/download.html) or build clang [from sources](https://clang.llvm.org/get_started.html).
|
||||||
|
|
||||||
#### Use clang-11 for Builds {#use-gcc-10-for-builds}
|
#### Use clang-12 for Builds {#use-clang-12-for-builds}
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
$ export CC=clang-11
|
$ export CC=clang-12
|
||||||
$ export CXX=clang++-11
|
$ export CXX=clang++-12
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install GCC 10 {#install-gcc-10}
|
### Install GCC 10 {#install-gcc-10}
|
||||||
|
|
||||||
We recommend building ClickHouse with clang-11, GCC-10 also supported, but it is not used for production builds.
|
We recommend building ClickHouse with clang-12, GCC-10 also supported, but it is not used for production builds.
|
||||||
|
|
||||||
If you want to use GCC-10 there are several ways to install it.
|
If you want to use GCC-10 there are several ways to install it.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"build_config": [
|
"build_config": [
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -12,7 +12,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "performance",
|
"package-type": "performance",
|
||||||
@ -32,7 +32,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -42,7 +42,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "undefined",
|
"sanitizer": "undefined",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -52,7 +52,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -62,7 +62,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -82,7 +82,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "debug",
|
"build-type": "debug",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "binary",
|
"package-type": "binary",
|
||||||
@ -114,7 +114,7 @@
|
|||||||
],
|
],
|
||||||
"special_build_config": [
|
"special_build_config": [
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "debug",
|
"build-type": "debug",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "deb",
|
"package-type": "deb",
|
||||||
@ -124,7 +124,7 @@
|
|||||||
"with_coverage": true
|
"with_coverage": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "binary",
|
"package-type": "binary",
|
||||||
@ -134,7 +134,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11-darwin",
|
"compiler": "clang-12-darwin",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "binary",
|
"package-type": "binary",
|
||||||
@ -144,7 +144,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11-aarch64",
|
"compiler": "clang-12-aarch64",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "binary",
|
"package-type": "binary",
|
||||||
@ -154,7 +154,7 @@
|
|||||||
"with_coverage": false
|
"with_coverage": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"compiler": "clang-11-freebsd",
|
"compiler": "clang-12-freebsd",
|
||||||
"build-type": "",
|
"build-type": "",
|
||||||
"sanitizer": "",
|
"sanitizer": "",
|
||||||
"package-type": "binary",
|
"package-type": "binary",
|
||||||
@ -167,7 +167,7 @@
|
|||||||
"tests_config": {
|
"tests_config": {
|
||||||
"Functional stateful tests (address)": {
|
"Functional stateful tests (address)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -179,7 +179,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (thread)": {
|
"Functional stateful tests (thread)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -191,7 +191,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (memory)": {
|
"Functional stateful tests (memory)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -203,7 +203,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (ubsan)": {
|
"Functional stateful tests (ubsan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "undefined",
|
"sanitizer": "undefined",
|
||||||
@ -215,7 +215,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (debug)": {
|
"Functional stateful tests (debug)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "debug",
|
"build_type": "debug",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -227,7 +227,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (ANTLR debug)": {
|
"Functional stateless tests (ANTLR debug)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "debug",
|
"build_type": "debug",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -239,7 +239,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (release)": {
|
"Functional stateful tests (release)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -251,7 +251,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateful tests (release, DatabaseOrdinary)": {
|
"Functional stateful tests (release, DatabaseOrdinary)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -275,7 +275,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (address)": {
|
"Functional stateless tests (address)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -287,7 +287,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (thread)": {
|
"Functional stateless tests (thread)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -299,7 +299,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (memory)": {
|
"Functional stateless tests (memory)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -311,7 +311,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (ubsan)": {
|
"Functional stateless tests (ubsan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "undefined",
|
"sanitizer": "undefined",
|
||||||
@ -323,7 +323,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (debug)": {
|
"Functional stateless tests (debug)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "debug",
|
"build_type": "debug",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -335,7 +335,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (release)": {
|
"Functional stateless tests (release)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -347,7 +347,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (pytest)": {
|
"Functional stateless tests (pytest)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -371,7 +371,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (release, wide parts enabled)": {
|
"Functional stateless tests (release, wide parts enabled)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -383,7 +383,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests (release, DatabaseOrdinary)": {
|
"Functional stateless tests (release, DatabaseOrdinary)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -407,7 +407,7 @@
|
|||||||
},
|
},
|
||||||
"Stress test (address)": {
|
"Stress test (address)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -419,7 +419,7 @@
|
|||||||
},
|
},
|
||||||
"Stress test (thread)": {
|
"Stress test (thread)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -431,7 +431,7 @@
|
|||||||
},
|
},
|
||||||
"Stress test (undefined)": {
|
"Stress test (undefined)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "undefined",
|
"sanitizer": "undefined",
|
||||||
@ -443,7 +443,7 @@
|
|||||||
},
|
},
|
||||||
"Stress test (memory)": {
|
"Stress test (memory)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -455,7 +455,7 @@
|
|||||||
},
|
},
|
||||||
"Stress test (debug)": {
|
"Stress test (debug)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "debug",
|
"build_type": "debug",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -467,7 +467,7 @@
|
|||||||
},
|
},
|
||||||
"Integration tests (asan)": {
|
"Integration tests (asan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -479,7 +479,7 @@
|
|||||||
},
|
},
|
||||||
"Integration tests (thread)": {
|
"Integration tests (thread)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -491,7 +491,7 @@
|
|||||||
},
|
},
|
||||||
"Integration tests (release)": {
|
"Integration tests (release)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -503,7 +503,7 @@
|
|||||||
},
|
},
|
||||||
"Integration tests (memory)": {
|
"Integration tests (memory)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -515,7 +515,7 @@
|
|||||||
},
|
},
|
||||||
"Integration tests flaky check (asan)": {
|
"Integration tests flaky check (asan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -527,7 +527,7 @@
|
|||||||
},
|
},
|
||||||
"Compatibility check": {
|
"Compatibility check": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -539,7 +539,7 @@
|
|||||||
},
|
},
|
||||||
"Split build smoke test": {
|
"Split build smoke test": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -551,7 +551,7 @@
|
|||||||
},
|
},
|
||||||
"Testflows check": {
|
"Testflows check": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -575,7 +575,7 @@
|
|||||||
},
|
},
|
||||||
"Unit tests release clang": {
|
"Unit tests release clang": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -587,7 +587,7 @@
|
|||||||
},
|
},
|
||||||
"Unit tests ASAN": {
|
"Unit tests ASAN": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -599,7 +599,7 @@
|
|||||||
},
|
},
|
||||||
"Unit tests MSAN": {
|
"Unit tests MSAN": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -611,7 +611,7 @@
|
|||||||
},
|
},
|
||||||
"Unit tests TSAN": {
|
"Unit tests TSAN": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -623,7 +623,7 @@
|
|||||||
},
|
},
|
||||||
"Unit tests UBSAN": {
|
"Unit tests UBSAN": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -635,7 +635,7 @@
|
|||||||
},
|
},
|
||||||
"AST fuzzer (debug)": {
|
"AST fuzzer (debug)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "debug",
|
"build_type": "debug",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -647,7 +647,7 @@
|
|||||||
},
|
},
|
||||||
"AST fuzzer (ASan)": {
|
"AST fuzzer (ASan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
@ -659,7 +659,7 @@
|
|||||||
},
|
},
|
||||||
"AST fuzzer (MSan)": {
|
"AST fuzzer (MSan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "memory",
|
"sanitizer": "memory",
|
||||||
@ -671,7 +671,7 @@
|
|||||||
},
|
},
|
||||||
"AST fuzzer (TSan)": {
|
"AST fuzzer (TSan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "thread",
|
"sanitizer": "thread",
|
||||||
@ -683,7 +683,7 @@
|
|||||||
},
|
},
|
||||||
"AST fuzzer (UBSan)": {
|
"AST fuzzer (UBSan)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "binary",
|
"package_type": "binary",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "undefined",
|
"sanitizer": "undefined",
|
||||||
@ -695,7 +695,7 @@
|
|||||||
},
|
},
|
||||||
"Release": {
|
"Release": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "none",
|
"sanitizer": "none",
|
||||||
@ -707,7 +707,7 @@
|
|||||||
},
|
},
|
||||||
"Functional stateless tests flaky check (address)": {
|
"Functional stateless tests flaky check (address)": {
|
||||||
"required_build_properties": {
|
"required_build_properties": {
|
||||||
"compiler": "clang-11",
|
"compiler": "clang-12",
|
||||||
"package_type": "deb",
|
"package_type": "deb",
|
||||||
"build_type": "relwithdebuginfo",
|
"build_type": "relwithdebuginfo",
|
||||||
"sanitizer": "address",
|
"sanitizer": "address",
|
||||||
|
Loading…
Reference in New Issue
Block a user