Skip to content

Add stack usage in ArmNoneEabi.cmake #56

Add stack usage in ArmNoneEabi.cmake

Add stack usage in ArmNoneEabi.cmake #56

Workflow file for this run

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