mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
10 lines
259 B
Bash
10 lines
259 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd $REPO_PATH/docs/tools
|
|
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
|