mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
19 lines
507 B
Bash
Executable File
19 lines
507 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x -e
|
|
|
|
# Update tzdata to the latest version. It is embedded into clickhouse binary.
|
|
sudo apt-get update && sudo apt-get install tzdata
|
|
|
|
ccache --show-stats ||:
|
|
ccache --zero-stats ||:
|
|
build/release --no-pbuilder $ALIEN_PKGS | ts '%Y-%m-%d %H:%M:%S'
|
|
mv /*.deb /output
|
|
mv *.changes /output
|
|
mv *.buildinfo /output
|
|
mv /*.rpm /output ||: # if exists
|
|
mv /*.tgz /output ||: # if exists
|
|
|
|
ccache --show-stats ||:
|
|
ln -s /usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0 /usr/lib/libOpenCL.so ||:
|