[doc] Fix building the doc due to previous patch using webp instead of png #229
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
| --- | |
| ############################################################ | |
| # PROJECT : MALT (MALoc Tracker) | |
| # DATE : 09/2025 | |
| # LICENSE : CeCILL-C | |
| # FILE : .github/workflows/malt.yml | |
| #----------------------------------------------------------- | |
| # AUTHOR : Sébastien Valat (INRIA) - 2024 - 2025 | |
| # AUTHOR : Sébastien Valat - 2024 | |
| ############################################################ | |
| name: Malt | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| pull_request: | |
| branches: | |
| - master | |
| - next | |
| jobs: | |
| build-project: | |
| name: Build & test MALT | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.1.1 | |
| - name: Install dependencies | |
| run: sudo apt-get install -y libunwind-dev nodejs npm cmake libelf-dev graphviz libssl-dev libpython3-dev | |
| - name: Build Project & test | |
| run: | | |
| mkdir build | |
| cd build | |
| ../configure --enable-tests --enable-debug --enable-junit-output | |
| make | |
| ctest --output-on-failure | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v4 | |
| if: failure() |