[components][sal]修改sal_bind对于协议族的判断 #2508
Workflow file for this run
This file contains 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: doc_doxygen | |
on: | |
# Runs at 16:00 UTC (BeiJing 00:00) on the 30st of every month | |
schedule: | |
- cron: '0 16 30 * *' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
- '**/README_zh.md' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- bsp/** | |
- examples/** | |
- .github/** | |
- '**/README.md' | |
- '**/README_zh.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: doxygen_doc generate | |
if: github.repository_owner == 'RT-Thread' && false | |
steps: | |
- uses: actions/checkout@v4 | |
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 |