mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
34 lines
703 B
Bash
Executable File
34 lines
703 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
GIT_BRANCH=$(git branch --show-current)
|
|
|
|
if [ "$GIT_DOCS_BRANCH" ] && ! [ "$GIT_DOCS_BRANCH" == "$GIT_BRANCH" ]; then
|
|
git fetch origin --depth=1 -- "$GIT_DOCS_BRANCH:$GIT_DOCS_BRANCH"
|
|
git checkout "$GIT_DOCS_BRANCH"
|
|
else
|
|
# Update docs repo
|
|
git pull
|
|
fi
|
|
|
|
# The repo is usually mounted to /ClickHouse
|
|
|
|
for lang in en ru zh
|
|
do
|
|
if [ -d "/ClickHouse/docs/${lang}" ]; then
|
|
cp -rf "/ClickHouse/docs/${lang}" "/opt/clickhouse-docs/docs/"
|
|
fi
|
|
done
|
|
|
|
# Force build error on wrong symlinks
|
|
sed -i '/onBrokenMarkdownLinks:/ s/ignore/error/g' docusaurus.config.js
|
|
|
|
if [[ $# -lt 1 ]] || [[ "$1" == "--"* ]]; then
|
|
export CI=true
|
|
yarn install
|
|
exec yarn build "$@"
|
|
fi
|
|
|
|
exec "$@"
|