-
Notifications
You must be signed in to change notification settings - Fork 125
45 lines (37 loc) · 986 Bytes
/
doxygen.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Doxygen
on:
workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Checkout exploragram
uses: actions/checkout@v3
with:
repository: BrunoLevy/exploragram
path: src/lib/exploragram
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install \
xorg-dev \
doxygen
- name: Configure
run: |
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cd build; make doc-devkit-full
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: ./build/doc/devkit-full/html
single-commit: true
clean: true