Updated usage and documentation for all binaries. #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: Doxygen CI | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install requirements | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libboost-all-dev cmake doxygen | |
- name: Create build directory | |
run: mkdir build-debug-generators | |
- name: Configure | |
run: cd build-debug-generators && cmake .. -DCMAKE_BUILD_TYPE=Debug -DGENERATORS=on | |
- name: Compile | |
run: cd build-debug-generators && make | |
- name: Test | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
run: cd build-debug-generators && make test | |
- name: Create documentation | |
run: cd build-debug-generators && make doc | |
- name: Cleanup submodules | |
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true | |
- name: Checkout gh-pages | |
uses: actions/checkout@v4 | |
with: | |
ref: "gh-pages" | |
clean: false | |
- name: Move and commit files | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' | |
git remote set-url origin https://x-access-token:${{ secrets.DEPLOY_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
cp -rp ./build-debug-generators/doc/html/* . | |
rm -rf ./build-debug-generators | |
ls -lah | |
git add . | |
git commit -m "Documentation for $GITHUB_SHA" || true | |
git push --force || true |