mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
ba6fc5651b
* Fix user name on distributed queries * wip * fix * Docker update and improve * Fix
9 lines
236 B
Bash
9 lines
236 B
Bash
#!/bin/bash
|
|
|
|
#ccache -s
|
|
mkdir -p /server/build_docker
|
|
cd /server/build_docker
|
|
cmake -G Ninja /server -DENABLE_TESTS=1
|
|
cmake --build .
|
|
env TEST_OPT="--skip long compile $TEST_OPT" ctest -V -j $(nproc || grep -c ^processor /proc/cpuinfo)
|