mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
11 lines
271 B
Bash
11 lines
271 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd $REPO_PATH/docs/tools
|
|
rm -rf venv
|
|
mkdir venv
|
|
virtualenv -p $(which python3) venv
|
|
source venv/bin/activate
|
|
python3 -m pip install --ignore-installed -r requirements.txt
|
|
./build.py --skip-git-log 2>&1 | tee $OUTPUT_PATH/output.log
|