#!/bin/bash ################################################################################ # Title : doxy_gen_and_deploy.sh # Date modified : 2018/01/14 # Notes : __AUTHOR__="Jeroen de Bruijn, modified by ladyada" # Preconditions: # - Doxygen configuration file must have the destination directory empty and # source code directory with a $(TRAVIS_BUILD_DIR) prefix. # - An gh-pages branch should already exist. See below for mor info on hoe to # create a gh-pages branch. # # Required global variables: # - TRAVIS_BUILD_NUMBER : The number of the current build. # - TRAVIS_COMMIT : The commit that the current build is testing. # - GH_REPO_TOKEN : Secure token to the github repository. # - TRAVIS_REPO_SLUG : The author/url slug # Optional global variables: # - DOXYFILE : The Doxygen configuration file. # - PRETTYNAME : A string name of the project (for the doxy headers) # - PRESERVE_FOLDERS : Comma-separated list of folders to preserve during cleanup # # For information on how to encrypt variables for Travis CI please go to # https://docs.travis-ci.com/user/environment-variables/#Encrypted-Variables # or https://gist.github.com/vidavidorra/7ed6166a46c537d3cbd2 # For information on how to create a clean gh-pages branch from the master # branch, please go to https://gist.github.com/vidavidorra/846a2fc7dd51f4fe56a0 # # This script will generate Doxygen documentation and push the documentation to # the gh-pages branch of a repository # Before this script is used there should already be a gh-pages branch in the # repository. # ################################################################################ ################################################################################ ##### Setup this script and get the current gh-pages branch. ##### echo 'Setting up the script...' # Exit with nonzero exit code if anything fails set -e export IS_PULL=0 if [[ -z "${TRAVIS_BUILD_DIR}" ]]; then export BUILD_DIR=${GITHUB_WORKSPACE} export AUTH=${GITHUB_ACTOR}:${GH_REPO_TOKEN} export REPO_SLUG=${GITHUB_REPOSITORY} export COMMIT_SHA1=${GITHUB_SHA} export BUILD_ID="GitHub Actions run: ${GITHUB_RUN_ID}" if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then export IS_PULL=1 fi else export BUILD_DIR=${TRAVIS_BUILD_DIR} export AUTH=${GH_REPO_TOKEN} export REPO_SLUG=${TRAVIS_REPO_SLUG} export COMMIT_SHA1=${TRAVIS_COMMIT} export BUILD_ID="Travis build: ${TRAVIS_BUILD_NUMBER}" if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then export IS_PULL=1 fi fi cd $BUILD_DIR # The default version of doxygen is too old so we'll use a modern version wget -q https://cdn-learn.adafruit.com/assets/assets/000/067/405/original/doxygen-1.8.13.linux.bin.tar.gz tar -xf doxygen-1.8.13.linux.bin.tar.gz mv doxygen-1.8.13/bin/doxygen . chmod +x doxygen # Create a clean working directory for this script. mkdir code_docs cd code_docs # Get the current gh-pages branch git clone -b gh-pages https://github.com/${REPO_SLUG}.git export REPO_NAME=${REPO_SLUG#*/} cd ${REPO_NAME} ##### Configure git. # Set the push default to simple i.e. push only the current branch. git config --global push.default simple # Pretend to be an user called Doxygen CI. git config user.name "Doxygen CI" git config user.email "ci-arduino@invalid" # Check if PRESERVE_FOLDERS is set and back them up if [ -n "$PRESERVE_FOLDERS" ]; then echo "Preserving folders: $PRESERVE_FOLDERS" mkdir -p /tmp/preserved # Move preserved folders to temp dir for folder in ${PRESERVE_FOLDERS//,/ }; do if [ -d "$folder" ]; then echo "Backing up folder: $folder" cp -r "$folder" /tmp/preserved/ fi done fi # Remove everything currently in the gh-pages branch. # GitHub is smart enough to know which files have changed and which files have # stayed the same and will only update the changed files. So the gh-pages branch # can be safely cleaned, and it is sure that everything pushed later is the new # documentation. # If there's no index.html (forwarding stub) grab our default one shopt -s extglob if [ ! -f index.html ]; then rm -rf * curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_index.html > index.html else # Don't fail if there's no files in the directory, just keep going! rm -r -- !(index.html) || true fi # Restore preserved folders if they were backed up if [ -n "$PRESERVE_FOLDERS" ]; then for folder in ${PRESERVE_FOLDERS//,/ }; do if [ -d "/tmp/preserved/$folder" ]; then echo "Restoring folder: $folder" cp -r "/tmp/preserved/$folder" ./ fi done fi # Need to create a .nojekyll file to allow filenames starting with an underscore # to be seen on the gh-pages site. Therefore creating an empty .nojekyll file. # Presumably this is only needed when the SHORT_NAMES option in Doxygen is set # to NO, which it is by default. So creating the file just in case. echo "" > .nojekyll ################################################################################ ##### Generate the Doxygen code documentation and log the output. ##### echo 'Generating Doxygen code documentation...' # Redirect both stderr and stdout to the log file AND the console. export DOXYFILE=${BUILD_DIR}/Doxyfile if [ ! -f ${DOXYFILE} ]; then echo "Grabbing default Doxyfile" curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/Doxyfile.default > ${DOXYFILE} #sed -i "s/^INPUT .*/INPUT = ..\/../" ${DOXYFILE} # If we can, fix up the name if [ ! -z "$PRETTYNAME" ]; then sed -i "s/^PROJECT_NAME.*/PROJECT_NAME = \"${PRETTYNAME}\"/" ${DOXYFILE} fi fi sed -i "s;^HTML_OUTPUT .*;HTML_OUTPUT = code_docs/${REPO_NAME}/html;" ${DOXYFILE} cd $BUILD_DIR if [ ! -z $1 ] then # Print out doxygen warnings in red, use specified path (for when everything is in src) ( cat $DOXYFILE; echo "INPUT=${BUILD_DIR}/$1" ) | ${BUILD_DIR}/doxygen - 2>&1 | tee foo.txt > >(while read line; do echo -e "\e[01;31m$line\e[0m" >&2; done) else # Print out doxygen warnings in red, use default path ${BUILD_DIR}/doxygen $DOXYFILE 2>&1 | tee foo.txt > >(while read line; do echo -e "\e[01;31m$line\e[0m" >&2; done) fi # if any warnings, bail! if [ -s foo.txt ]; then exit 1 ; fi rm foo.txt # If we're a pull request, don't push docs to github! if [ ${IS_PULL} == 1 ]; then echo "This is a Pull Request, we're done!" exit 0 else echo "This is a Commit, Uploading documentation..." fi cd code_docs/${REPO_NAME} ################################################################################ ##### Upload the documentation to the gh-pages branch of the repository. ##### # Only upload if Doxygen successfully created the documentation. # Check this by verifying that the html directory and the file html/index.html # both exist. This is a good indication that Doxygen did it's work. if [ -d "html" ] && [ -f "html/index.html" ]; then case "$GITHUB_REF_NAME" in (main|master) echo 'Uploading documentation to the gh-pages branch...' # Add everything in this directory (the Doxygen code documentation) to the # gh-pages branch. # GitHub is smart enough to know which files have changed and which files have # stayed the same and will only update the changed files. echo 'Adding all files' git add --all if [ -n "$(git status --porcelain)" ]; then echo "Changes to commit" else echo "No changes to commit" exit 0 fi # Commit the added files with a title and description containing the Travis CI # build number and the GitHub commit reference that issued this build. echo 'Git committing' git commit \ -m "Deploy docs to GitHub Pages from commit ${COMMIT_SHA1:0:10}" \ -m "Commit: ${COMMIT_SHA1}"$'\n'"${BUILD_ID}" # Force push to the remote gh-pages branch. # The output is redirected to /dev/null to hide any sensitive credential data # that might otherwise be exposed. echo 'Git pushing' git push --force "https://${AUTH}@github.com/${REPO_SLUG}.git" > /dev/null 2>&1 ;; (*) echo 'Not the main branch, not pushing documentation' esac else echo '' >&2 echo 'Warning: No documentation (html) files have been found!' >&2 echo 'Warning: Not going to push the documentation to GitHub!' >&2 exit 1 fi