-
Notifications
You must be signed in to change notification settings - Fork 221
/
generate-latest-docs.sh
executable file
·48 lines (39 loc) · 1.57 KB
/
generate-latest-docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash -eux
# Copyright 2020 The Error Prone Authors.
#
# Licensed 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.
# Adapted from https://github.com/google/error-prone/blob/1ca81097e39957e55867732642687f3fd1160f70/util/generate-latest-docs.sh
echo -e "Publishing docs...\n"
if [ $# -eq 0 ]; then
echo "No JDK version provided. Usage: $0 <JDK_VERSION>"
exit 1
fi
JDK_VERSION=$1
JAVADOC_DIR=$HOME/wala-javadoc
git clone --quiet --filter=tree:0 https://x-access-token:"${GITHUB_TOKEN}"@github.com/wala/javadoc "$JAVADOC_DIR" > /dev/null
(
cd "$JAVADOC_DIR"
rm -rf ./*
)
./gradlew aggregatedJavadocs --no-configuration-cache "-Pcom.ibm.wala.jdk-version=$JDK_VERSION"
rsync -a build/docs/javadoc/ "${JAVADOC_DIR}"
cd "$JAVADOC_DIR"
git add --all .
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
if git commit -m "Latest docs on successful build $GITHUB_RUN_NUMBER auto-pushed to gh-pages"; then
git push -fq origin master > /dev/null
echo "Published docs to gh-pages."
else
echo "No javadoc changes to publish."
fi