Add log_code_status parameter to YarpRobotLoggerDevice configurations #1918
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: gh-pages | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| - '!gh-pages' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| miniforge-variant: Miniforge3 | |
| miniforge-version: latest | |
| channels: conda-forge | |
| channel-priority: true | |
| conda-remove-defaults: true | |
| - name: Dependencies [apt] | |
| shell: bash -l {0} | |
| run: | | |
| # The following dependencies are not available in conda | |
| # See: https://github.com/conda-forge/texlive-core-feedstock/issues/19 | |
| sudo apt update | |
| sudo apt install -y xsltproc texlive ghostscript graphviz texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended flex bison | |
| - name: Dependencies | |
| shell: bash -l {0} | |
| run: | | |
| # Dependencies | |
| conda install doxygen=1.9.1 toml pygments docutils jinja2 | |
| - name: Fetch m.css | |
| shell: bash -l {0} | |
| run: | | |
| cd ${GITHUB_WORKSPACE} | |
| git clone https://github.com/mosra/m.css.git | |
| cd m.css | |
| git checkout 4bf4ddade48717ffabbdc6a1fd7ed15a75f9bec3 | |
| - name: Build docs | |
| shell: bash -l {0} | |
| run: | | |
| cd docs | |
| git clone https://github.com/ami-iit/bipedal-locomotion-framework.git | |
| python3 ./generate_website.py --mcss_path ${GITHUB_WORKSPACE}/m.css/documentation/doxygen.py | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: site | |
| path: docs/site | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| needs: [build] | |
| if: github.ref == 'refs/heads/master' | |
| steps: | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: site | |
| path: site | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@3.7.1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: gh-pages | |
| FOLDER: site |