GitLab pipeline. #363
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
# Taken from: | |
# - https://github.com/marketplace/actions/doxygen-github-pages-deploy-action | |
# - https://github.com/DenverCoder1/doxygen-github-pages-action/blob/main/action.yml | |
name: GH Doxygen | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
DOXYGEN_VERSION: 1.9.7 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- name: Update Ubuntu package list | |
run: sudo apt-get update | |
- name: Install CMake | |
run: sudo apt-get install -y cmake | |
- name: Install Graphviz (for doxygen 'dot' component) | |
run: sudo apt-get install -y graphviz | |
- name: Prepare cache timestamp | |
id: cache_timestamp | |
shell: cmake -P {0} | |
run: | | |
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) | |
file(APPEND "$ENV{GITHUB_OUTPUT}" "timestamp=${current_date}") | |
- name: Cache Doxygen | |
id: cache-doxygen | |
uses: actions/[email protected] | |
with: | |
path: doxygen-${{ env.DOXYGEN_VERSION }} | |
key: doxygen-cache-${{ steps.cache_timestamp.outputs.timestamp }} | |
restore-keys: | | |
doxygen-cache- | |
- name: Install Doxygen from GitHub | |
if: steps.cache-doxygen.outputs.cache-hit != 'true' | |
run: | | |
version_underscore=$(echo "$DOXYGEN_VERSION" | sed -r 's/\./_/g') | |
dirname=doxygen-$DOXYGEN_VERSION | |
filename_tar=$dirname.linux.bin.tar | |
filename_gz=$filename_tar.gz | |
url=https://github.com/doxygen/doxygen/releases/download/Release_$version_underscore/$filename_gz | |
wget $url | |
gunzip $filename_gz | |
tar xf $filename_tar | |
echo "${GITHUB_WORKSPACE}/$dirname/bin" >> $GITHUB_PATH | |
- name: Generate Doxygen Documentation | |
run: | | |
mkdir build && cd build | |
cmake .. -DBUILD_PROJECTWX=OFF -DBUILD_TESTING=OFF -DDOXYGEN_GENERATE_LATEX=FALSE | |
cmake --build . --target doxygen | |
- name: Create .nojekyll (ensures pages with underscores work on gh pages) | |
run: touch docs/doxygen/build/html/.nojekyll | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/doxygen/build/html | |