mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
0047987333
* Allow run integration tests from ctest: cmake .. -DENABLE_TEST_INTEGRATION=1 && ninja && ctest -V -R integration * CLICKHOUSE-3885: add partition_key alias * fix * Update ClusterCopier.cpp * Better test * fixing..
8 lines
229 B
Bash
8 lines
229 B
Bash
#!/bin/bash
|
|
|
|
#ccache -s
|
|
mkdir -p /server/build_docker
|
|
cd /server/build_docker
|
|
cmake -G Ninja /server -DENABLE_TESTS=1
|
|
ninja && env TEST_OPT="--skip long compile $TEST_OPT" ctest -V -j $(nproc || grep -c ^processor /proc/cpuinfo)
|