DAOS-15739 engine: Add single-engine, multi-socket support #23517
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: Doxygen | |
# Always run on Pull Requests as then this check can be marked as required. | |
on: | |
pull_request: | |
jobs: | |
Doxygen: | |
name: Doxygen | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install doxygen | |
run: sudo apt-get install doxygen | |
- name: Add parser | |
run: echo -n "::add-matcher::ci/daos-doxygen-matcher.json" | |
- name: Run check | |
run: doxygen Doxyfile | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: API Documentation | |
path: docs/doxygen/html/ | |
retention-days: 1 |