blob: 19e33254de147f33a8ecfa958e352d5ac6678af2 [file] [log] [blame]
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
CURDIR=`pwd`
CURDIRNAME=`basename $CURDIR`
if [ "$CURDIRNAME" != "docs" ]; then
echo "This script MUST be run under 'docs' directory. "
exit 1
fi
help() {
echo -e "Usage: \n\t$0 scala_version[2.11] build_api_doc[0|1]"
echo -e "\tE.g. $0 2.11 1"
}
copy_dir() {
srcDir=$1
destDir=$2
echo "Making directory $destDir"
mkdir -p $destDir
echo "copy from $srcDir to $destDir..."
cp -r $srcDir/* $destDir
}
if [ $# -ne 2 ]; then
help
exit 1
fi
export SCALA_VERSION=$1
export BUILD_API=$2
# generate site documents
mkdocs build --clean
# generate API doc
if [ "$BUILD_API" = 1 ]; then
# Build Scaladoc for Java/Scala
echo "Moving to project root and building API docs."
echo "Running 'sbt clean assembly unidoc'; this may take a few minutes..."
cd $CURDIR/..
sbt clean assembly unidoc
echo "Moving back into docs dir."
cd $CURDIR
echo "Removing old docs"
rm -rf site/api
#copy unified ScalaDoc
copy_dir "../target/scala-$SCALA_VERSION/unidoc" "site/api/scala"
#copy unified java doc
copy_dir "../target/javaunidoc" "site/api/java"
fi