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