mirror of https://github.com/istio/istio.io.git
96 lines
1.9 KiB
Bash
Executable File
96 lines
1.9 KiB
Bash
Executable File
#! /bin/bash
|
||
#
|
||
# Build the archive site
|
||
#
|
||
|
||
# List of name:tagOrBranch
|
||
TOBUILD=(
|
||
v1.0:release-1.0
|
||
v0.8:release-0.8
|
||
)
|
||
|
||
TOBUILD_JEKYLL=(
|
||
v0.7:release-0.7
|
||
v0.6:release-0.6
|
||
v0.5:release-0.5
|
||
v0.4:release-0.4
|
||
v0.3:release-0.3
|
||
v0.2:release-0.2
|
||
v0.1:release-0.1
|
||
)
|
||
|
||
# Prepare
|
||
rm -fr public
|
||
TMP=$(mktemp -d)
|
||
mkdir ${TMP}/archive
|
||
|
||
GITDIR=istio.io
|
||
rm -fr ${GITDIR}
|
||
git clone https://github.com/istio/istio.io.git
|
||
cd ${GITDIR}
|
||
|
||
# Grab the latest version info
|
||
cp data/versions.yml ${TMP}
|
||
|
||
for rel in "${TOBUILD[@]}"
|
||
do
|
||
NAME=$(echo $rel | cut -d : -f 1)
|
||
TAG=$(echo $rel | cut -d : -f 2)
|
||
BASEURL=$(echo /$NAME)
|
||
echo "### Building '$NAME' from $TAG for $BASEURL"
|
||
git clean -f
|
||
git checkout ${TAG}
|
||
cp ${TMP}/versions.yml data
|
||
|
||
scripts/gen_site.sh ${BASEURL}
|
||
|
||
mv public ${TMP}/archive/${NAME}
|
||
echo "- name: \"${NAME}\"" >> ${TMP}/archives.yml
|
||
done
|
||
|
||
for rel in "${TOBUILD_JEKYLL[@]}"
|
||
do
|
||
NAME=$(echo $rel | cut -d : -f 1)
|
||
TAG=$(echo $rel | cut -d : -f 2)
|
||
echo "### Building '$NAME' from $TAG"
|
||
git clean -f
|
||
git checkout ${TAG}
|
||
echo "baseurl: /$NAME" > config_override.yml
|
||
cp ${TMP}/versions.yml _data
|
||
|
||
bundle install
|
||
bundle exec jekyll build --config _config.yml,config_override.yml
|
||
|
||
mv _site ${TMP}/archive/${NAME}
|
||
echo "- name: \"${NAME}\"" >> ${TMP}/archives.yml
|
||
done
|
||
|
||
cd ..
|
||
rm -fr ${GITDIR}
|
||
|
||
echo "### Building landing page"
|
||
|
||
# Grab the state
|
||
cp ${TMP}/archives.yml data
|
||
|
||
# Adjust a few things for archive_landing
|
||
rm -fr content_zh content
|
||
rm -fr static/talks
|
||
mkdir content content_zh
|
||
echo "" >content/_index.md
|
||
echo "" >content_zh/_index.md
|
||
cp archive_config.toml config.toml
|
||
sed "s/archive_landing: false/archive_landing: true/" <"data/args.yml" >${TMP}/args.yml
|
||
mv ${TMP}/args.yml data
|
||
|
||
scripts/gen_site.sh "https://archive.istio.io"
|
||
|
||
# fetch the older sites
|
||
mv ${TMP}/archive/* public
|
||
rm -fr ${TMP}
|
||
|
||
git clean -f
|
||
git checkout -- .
|
||
|
||
echo "All done!"
|