-
Notifications
You must be signed in to change notification settings - Fork 7
48 lines (42 loc) · 1.11 KB
/
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
46
47
48
name: doxygen
on:
push:
branches:
- main
jobs:
build-linux:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
name: Check out repository
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
persist-credentials: false
- name: Install dependencies and pyemap
run: |
conda install cmake
conda install hdf5
conda install -c conda-forge codecov
conda install -c conda-forge eigen
conda install -c conda-forge lcov
conda install -c dlr-sc doxygen
- name: Build doxygen
run: |
cd dox
doxygen Doxyfile.in
cd ..
- name: Deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: doxygen_docs
CLEAN: true