onos/tools/build/onos-upload-docs
Ray Milkey 75ee45ef7e Only modify the default doc set when a new release is made
Change-Id: I68fe73d3a8e39c55bb1b3d390cbdcae66c4ff1c5
2018-01-22 17:24:48 +00:00

45 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
# -----------------------------------------------------------------------------
# Uploads ONOS Java API docs.
# -----------------------------------------------------------------------------
set -e
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
. $ONOS_ROOT/tools/build/envDefaults
user=${1:-${WIKI_USER:-$USER}}
remote=$user@api.onosproject.org
docs=$(onos-buck build //docs:external --show-output 2>/dev/null | tail -1 | cut -d\ -f2)
ONOS_VERSION_STRING=$ONOS_VERSION
if echo $ONOS_VERSION_STRING | grep '-'; then
echo "ONOS version $ONOS_VERSION_STRING is a beta or RC. Skipping"
exit 0
fi
scp $remote:/var/www/api/index.html /tmp/index.html
CURRENT_VERSION_STRING=`grep URL /tmp/index.html | sed "s%.*URL=/%%" | sed "s%/.*%%"`
CURRENT_VERSION_SPLIT=(${CURRENT_VERSION_STRING//\./ })
ONOS_VERSION_SPLIT=(${ONOS_VERSION_STRING//\./ })
if (( ${ONOS_VERSION_SPLIT[1]} >= ${CURRENT_VERSION_SPLIT[1]} )); then
echo "Should replace current version $CURRENT_VERSION_STRING with new ONOS version $ONOS_VERSION_STRING"
else
echo "Not replacing current version $CURRENT_VERSION_STRING with ONOS version $ONOS_VERSION_STRING"
exit 0
fi
scp $docs $remote:/tmp/onos-apidocs-$ONOS_VERSION.tar.gz
ssh $remote "
mkdir -p /var/www/api/$ONOS_VERSION
cd /var/www/api/$ONOS_VERSION
unzip /tmp/onos-apidocs-$ONOS_VERSION.tar.gz
#mv onos-apidocs-$ONOS_VERSION/* .
#rm -rf onos-apidocs-$ONOS_VERSION
# bump /var/www/api/index.html
sed -i -E 's#/[^/]+/#/$ONOS_VERSION/#g' /var/www/api/index.html
"