mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
cfe98c4aba
- Publish only benchmarks and data - Minimize clickhouse/docs-release - Run it as a normal user - Speed up running by not redownload virtual env deps - Clean out docs and blog buildging - Minimize docs/tools/requirements.txt
13 lines
314 B
Bash
13 lines
314 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$REPO_PATH/docs/tools"
|
|
if ! [ -d venv ]; then
|
|
mkdir -p venv
|
|
virtualenv -p "$(which python3)" venv
|
|
source venv/bin/activate
|
|
python3 -m pip install --ignore-installed -r requirements.txt
|
|
fi
|
|
source venv/bin/activate
|
|
./release.sh 2>&1 | tee "$OUTPUT_PATH/output.log"
|