Merge ODP v1.45.1.0 #99
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
name: GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Documentation: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install doxygen asciidoctor libconfig-dev libssl-dev mscgen cmake graphviz libdpdk-dev | |
sudo gem install asciidoctor | |
- name: Build | |
run: | | |
./bootstrap | |
./configure --enable-user-guides | |
pushd doc | |
make | |
popd | |
# Doxygen does not trap on warnings so check for them here | |
make doxygen-doc 2>&1 | tee ./doxygen.log | |
! fgrep -rq warning ./doxygen.log | |
- name: Before deploy | |
run: | | |
pushd doc | |
mkdir gh-pages | |
cp -r application-api-guide/output/html/* gh-pages/ | |
cp -r platform-api-guide/output/html/ gh-pages/platform-api-guide | |
cp -r helper-guide/output/html/ gh-pages/helper-guide | |
mkdir gh-pages/implementers-guide | |
cp implementers-guide/implementers-guide.html gh-pages/implementers-guide/index.html | |
mkdir gh-pages/users-guide | |
cp users-guide/users-guide.html gh-pages/users-guide/index.html | |
mkdir gh-pages/process-guide | |
cp process-guide/*.html gh-pages/process-guide/ | |
popd | |
- name: Deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: crazy-max/ghaction-github-pages@v4 | |
with: | |
allow_empty_commit: false | |
build_dir: ./doc/gh-pages | |
jekyll: false | |
target_branch: gh-pages |