mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
15e77ec688
Dont test symbols with gdb Travis: add clang6 + ubuntu bionic (disabled) Travis: dont run tests with gcc7 (too long, does not fit to limit) Allow use clang-7 as internal compiler: -DCMAKE_CXX_COMPILER=clang++-7 -DCMAKE_C_COMPILER=clang-7 -DLLVM_VERSION_POSTFIX=-7 Debian: Fix package install (old version can't do service clickhouse disable_cron) Build fixes (ubuntu bionic + clang6.0) Update internal compiler clang6.0 to rc1
7 lines
155 B
Bash
7 lines
155 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "upgrade" ]; then
|
|
# Return etc/cron.d/clickhouse-server to original state
|
|
service clickhouse-server disable_cron || true
|
|
fi
|