Skip to content

Commit 009d01e

Browse files
authored
Merge branch 'main' into feature/prepare-cmake-workflow-presets
2 parents 24f66ec + 28b8aee commit 009d01e

40 files changed

+3051
-60
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Doxygen GitHub Pages Deploy Action
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: DenverCoder1/[email protected]
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}
17+
branch: gh-pages
18+
folder: docs/html
19+
config_file: docs/Doxyfile

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
*.app
3333

3434
build
35-
mkerr
36-
olderr
3735
.DS_store
3836
.vs
3937
.vscode
@@ -42,3 +40,6 @@ stagedir
4240
# In-source builds are not allowed
4341
CMakeCache.txt
4442
CMakeFiles/
43+
44+
docs/html
45+
docs/latex

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
SANITIZERS = release debug msan asan usan tsan
5-
.PHONY: default run update check ce todo distclean clean codespell build test all $(SANITIZERS)
5+
6+
.PHONY: default doc run update check ce todo distclean clean codespell build test all format $(SANITIZERS)
67

78
COMPILER=system
89
CXX_BASE=$(CXX:$(dir $(CXX))%=%)
@@ -51,6 +52,9 @@ all: $(SANITIZERS)
5152
run: test
5253
./$(BUILD)/examples/$(EXAMPLE)
5354

55+
doc:
56+
doxygen docs/Doxyfile
57+
5458
release: test
5559

5660
$(SANITIZERS):
@@ -79,9 +83,13 @@ check:
7983
< $$h sed -n "/^ *# *include <Beman\//s@.*[</]Beman/\(.*\).hpp>.*@$$from \1@p"; \
8084
done | tsort > /dev/null
8185

86+
8287
codespell:
8388
codespell -L statics,snd,copyable,cancelled
8489

90+
format:
91+
clang-format -i `git diff --name-only main | egrep '\.[ch]pp'`
92+
8593
todo:
8694
bin/mk-todo.py
8795

assets/css/style.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";

0 commit comments

Comments
 (0)