mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
14 lines
274 B
Bash
Executable File
14 lines
274 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x -e
|
|
|
|
ccache --show-stats ||:
|
|
ccache --zero-stats ||:
|
|
build/release --no-pbuilder $ALIEN_PKGS
|
|
mv /*.deb /output
|
|
mv *.changes /output
|
|
mv *.buildinfo /output
|
|
mv /*.rpm /output ||: # if exists
|
|
mv /*.tgz /output ||: # if exists
|
|
ccache --show-stats ||:
|