feat: fully support Iguana and add documentation webpage #209
Workflow file for this run
This file contains hidden or 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: C++ CI Testing | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ master ] | |
| tags: [ '*' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true # cancel in-progress workflows on the same PR branch | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build_and_test: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| container: | |
| image: codecr.jlab.org/hallb/clas12/container-forge/base_root:latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v5 | |
| - name: set clas12root env vars | |
| run: | | |
| CLAS12ROOT=$GITHUB_WORKSPACE | |
| PATH=$CLAS12ROOT/bin${PATH:+:${PATH}} | |
| LD_LIBRARY_PATH=$CLAS12ROOT/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} | |
| ROOT_INCLUDE_PATH=$CLAS12ROOT/Clas12Root:$CLAS12ROOT/Clas12Banks${ROOT_INCLUDE_PATH:+:${ROOT_INCLUDE_PATH}} | |
| echo CLAS12ROOT=$CLAS12ROOT | tee -a $GITHUB_ENV | |
| echo PATH=$PATH | tee -a $GITHUB_ENV | |
| echo LD_LIBRARY_PATH=$LD_LIBRARY_PATH | tee -a $GITHUB_ENV | |
| echo ROOT_INCLUDE_PATH=$ROOT_INCLUDE_PATH | tee -a $GITHUB_ENV | |
| - name: print versions | |
| run: | | |
| cmake --version | |
| root --version | |
| - name: build clas12root | |
| run: ./installC12Root | |
| - name: run example on data file | |
| run: ./bin/clas12root -q ./tests/read_file.C | |
| generate_documentation: | |
| name: Generate documentation | |
| runs-on: ubuntu-latest | |
| container: | |
| image: codecr.jlab.org/hallb/clas12/container-forge/base_root:latest | |
| options: --user root | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: install dependencies | |
| run: | | |
| pacman -Sy --noconfirm | |
| pacman -S --noconfirm doxygen graphviz | |
| - name: doxygen | |
| run: docs/doxygen/generate.sh | |
| - name: rename | |
| run: mv share/doc/clas12root/html pages | |
| - uses: actions/upload-pages-artifact@v4 | |
| with: | |
| retention-days: 3 | |
| path: pages/ | |
| deploy_webpages: | |
| if: ${{ github.ref == 'refs/heads/master' }} | |
| name: Deploy documentation webpage | |
| needs: | |
| - generate_documentation | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: deployment | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |