-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add doxygen docs to Github Pages #8329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
yohannd1
wants to merge
43
commits into
LMMS:master
Choose a base branch
from
yohannd1:doxygen
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+109
−16
Open
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
3b4363b
first doxygen attempt
yohannd1 d1ffde0
investigate why it's not working...
yohannd1 3e0b424
tab? really?
yohannd1 237dc96
not sure what I'm doing anymore
yohannd1 e1205a3
small change for debug
yohannd1 3c3998c
install doxygen
yohannd1 148159b
...
yohannd1 ff848ee
organize doxygen stuff, and fix permissions
yohannd1 f741604
disable running doxygen on PRs
yohannd1 504b7b6
Revert "disable running doxygen on PRs"
yohannd1 79075f2
experiment removing some dependencies and make configs
yohannd1 8a1cab8
remove many dependencies
yohannd1 30e9a6e
try using minimal dependencies
yohannd1 79db7dc
reverting last change and removing more make options
yohannd1 6e5b4bc
improve + test doxygen check
yohannd1 dd27fb5
fix typo...
yohannd1 6247ebd
ok, it seems it worked!
yohannd1 069f3ab
improve doxygen check
yohannd1 fd4371e
it worked!
yohannd1 0a6ac1e
experiment using less dependencies
yohannd1 6eb768b
even less dependencies
yohannd1 1d3526a
this should make it error properly in windows as well?
yohannd1 26b8451
use separate cmake file for handling doxygen error
yohannd1 fb407da
try not using fluidsynth
yohannd1 959a94e
specify a main page
yohannd1 c789c88
restrict action for branches (don't include PRs)
yohannd1 17dd4c4
addressing some comments
yohannd1 d69c29a
update more action dependencies
yohannd1 1065be8
remove many lib deps
yohannd1 3a01022
add qt5svg back
yohannd1 8010316
add back qt5x11extras
yohannd1 74c81fb
add required sndfile
yohannd1 86d7829
add back fftw
yohannd1 a18d7ca
add back samplerate
yohannd1 3dcc28f
add back xcb
yohannd1 751c2d6
addback xcb keysyms/util
yohannd1 c3db15e
add back list moreutils
yohannd1 063ac50
install doxygen separately through a github action
yohannd1 a807160
Apply suggestions from code review
yohannd1 e55dcf4
attempt to minimize doc dependencies through a dedicated CMakeLists.txt
yohannd1 48e6d34
Merge branch 'doxygen' of github.com:yohannd1/lmms-fork into doxygen
yohannd1 3e6e17a
source file adjustments...
yohannd1 fc54866
move doc_fail back into the error branch
yohannd1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| --- | ||
| name: doxygen | ||
| 'on': [push] # only auto-run on pushing to a branch | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
| jobs: | ||
| linux-x86_64: | ||
| name: linux-x86_64 | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| MAKEFLAGS: -j2 | ||
| steps: | ||
| - name: Configure git | ||
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
| - name: Check out | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 0 | ||
| submodules: recursive | ||
| - name: Install packages | ||
| run: | | ||
| sudo apt-get update -y | ||
| sudo apt-get install -y --no-install-recommends cmake make | ||
| - name: Install doxygen | ||
| uses: ssciwr/doxygen-install@v2 | ||
| with: | ||
| version: "1.16.1" | ||
| - name: Configure | ||
| run: | | ||
| cmake -S doc -B build $CMAKE_OPTS | ||
| - name: Build docs | ||
| run: cmake --build build --target doc | ||
|
yohannd1 marked this conversation as resolved.
JohannesLorenz marked this conversation as resolved.
|
||
| - name: Setup Pages | ||
| uses: actions/configure-pages@v5 | ||
| - name: Upload generated website | ||
| uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: 'build/doc/html' | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v5 | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.