2023-10-30 01:12:29 +08:00
|
|
|
name: doc_doxygen
|
|
|
|
on:
|
|
|
|
# Runs at 16:00 UTC (BeiJing 00:00) on the 30st of every month
|
|
|
|
schedule:
|
|
|
|
- cron: '0 16 30 * *'
|
2024-09-15 08:22:44 +08:00
|
|
|
workflow_dispatch:
|
2023-10-30 01:12:29 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2023-12-30 15:50:04 +08:00
|
|
|
name: doxygen_doc generate
|
2024-09-15 08:22:44 +08:00
|
|
|
if: github.repository_owner == 'RT-Thread'
|
2023-10-30 01:12:29 +08:00
|
|
|
steps:
|
2023-12-26 23:42:58 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-30 01:12:29 +08:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
- name: Install Tools
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -qq install doxygen graphviz
|
|
|
|
- name: generat doxygen html
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd documentation/doxygen
|
|
|
|
doxygen Doxyfile
|
|
|
|
cat Doxyfile
|