ClickHouse/docker/packager/unbundled/build.sh

16 lines
341 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -x -e
ccache --show-stats ||:
ccache --zero-stats ||:
2020-10-02 09:40:50 +00:00
read -ra ALIEN_PKGS <<< "${ALIEN_PKGS:-}"
2021-04-24 23:11:31 +00:00
build/release "${ALIEN_PKGS[@]}" | ts '%Y-%m-%d %H:%M:%S'
mv /*.deb /output
2020-09-30 17:06:14 +00:00
mv -- *.changes /output
mv -- *.buildinfo /output
mv /*.rpm /output ||: # if exists
mv /*.tgz /output ||: # if exists
ccache --show-stats ||: