Add stack usage in ArmNoneEabi.cmake #56
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: Build and Deploy Doxygen Documentation | |
on: [workflow_call, push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build the docker image | |
run: | | |
docker build -f docker/Dockerfile.docs -t docs . | |
- name: Run the doxygen-docs.py inside the docker container | |
run: | | |
docker run --rm -v "$PWD:/home/jenkins" -w /home/jenkins --user $(id -u):4996 docs python3 .ci/doxygen-docs.py | |
- name: Move and zip the doxygen files | |
run: | | |
mv doc/doxygenOut/html doxygen_docs | |
zip -r doxygen_docs.zip doxygen_docs | |
- name: Upload doxygen_docs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: doxygen_docs | |
path: doxygen_docs.zip |