-
Notifications
You must be signed in to change notification settings - Fork 747
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move doc generate from travis to GitHub actions
PiperOrigin-RevId: 348115958
- Loading branch information
Showing
3 changed files
with
48 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,38 +16,33 @@ | |
|
||
set -eu | ||
|
||
if [ "$TRAVIS_REPO_SLUG" == "google/error-prone" ] && \ | ||
[ "$TRAVIS_JDK_VERSION" == "openjdk15" ] && \ | ||
[ "$TRAVIS_PULL_REQUEST" == "false" ] && \ | ||
[ "$TRAVIS_BRANCH" == "master" ]; then | ||
echo -e "Publishing docs...\n" | ||
echo -e "Publishing docs...\n" | ||
|
||
GH_PAGES_DIR=$HOME/gh-pages | ||
GH_PAGES_DIR=$HOME/gh-pages | ||
|
||
git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/google/error-prone $GH_PAGES_DIR > /dev/null | ||
( | ||
cd $GH_PAGES_DIR | ||
rm -rf _data/bugpatterns.yaml api/latest | ||
mkdir -p _data api/latest | ||
) | ||
git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/google/error-prone $GH_PAGES_DIR > /dev/null | ||
( | ||
cd $GH_PAGES_DIR | ||
rm -rf _data/bugpatterns.yaml api/latest | ||
mkdir -p _data api/latest | ||
) | ||
|
||
mvn -P '!examples' javadoc:aggregate | ||
rsync -a target/site/apidocs/ ${GH_PAGES_DIR}/api/latest | ||
mvn -P '!examples' javadoc:aggregate | ||
rsync -a target/site/apidocs/ ${GH_PAGES_DIR}/api/latest | ||
|
||
# The "mvn clean" is necessary since the wiki docs are generated by an | ||
# annotation processor that also compiles the code. If Maven thinks the code | ||
# does not need to be recompiled, the wiki docs will not be generated either. | ||
mvn clean | ||
# The "mvn clean" is necessary since the wiki docs are generated by an | ||
# annotation processor that also compiles the code. If Maven thinks the code | ||
# does not need to be recompiled, the wiki docs will not be generated either. | ||
mvn clean | ||
|
||
mvn -P run-annotation-processor compile site | ||
rsync -a docgen/target/generated-wiki/ ${GH_PAGES_DIR} | ||
mvn -P run-annotation-processor compile site | ||
rsync -a docgen/target/generated-wiki/ ${GH_PAGES_DIR} | ||
|
||
cd $GH_PAGES_DIR | ||
git add --all . | ||
git config --global user.name "travis-ci" | ||
git config --global user.email "[email protected]" | ||
git commit -m "Latest docs on successful travis build $TRAVIS_BUILD_NUMBER auto-pushed to gh-pages" | ||
git push -fq origin gh-pages > /dev/null | ||
|
||
echo -e "Published docs to gh-pages.\n" | ||
fi | ||
cd $GH_PAGES_DIR | ||
git add --all . | ||
git config --global user.name "travis-ci" | ||
git config --global user.email "[email protected]" | ||
git commit -m "Latest docs on successful travis build $TRAVIS_BUILD_NUMBER auto-pushed to gh-pages" | ||
git push -fq origin gh-pages > /dev/null | ||
|
||
echo -e "Published docs to gh-pages.\n" |