forked from openucx/ucc
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 735 Bytes
/
docs.yaml
File metadata and controls
28 lines (25 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Docs
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends doxygen doxygen-latex cm-super texlive-fonts-recommended
- uses: actions/checkout@v4
- name: Build UCC docs
run: |
./autogen.sh
./configure --with-docs-only
make docs
- name: Upload docs
uses: actions/upload-artifact@v4
with:
name: docs
path: ${{ github.workspace }}/docs/doxygen-doc/ucc.pdf
retention-days: 7