mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
16 lines
341 B
Bash
Executable File
16 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x -e
|
|
|
|
ccache --show-stats ||:
|
|
ccache --zero-stats ||:
|
|
read -ra ALIEN_PKGS <<< "${ALIEN_PKGS:-}"
|
|
build/release "${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 ||:
|