mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
11 lines
150 B
Bash
11 lines
150 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x -e
|
||
|
|
||
|
ccache -s ||:
|
||
|
build/release --no-pbuilder
|
||
|
mv /*.deb /output
|
||
|
mv *.changes /output
|
||
|
mv *.buildinfo /output
|
||
|
ccache -s ||:
|